adcio_agent 1.0.0 copy "adcio_agent: ^1.0.0" to clipboard
adcio_agent: ^1.0.0 copied to clipboard

This is a Flutter agent for the ADCIO project, a chatbot based on LLM(GPT) that suggests personalized products through conversations

adcio_agent #

pub package

A Flutter plugin that provides a ADCIO Agent Widget service. This is an LLM (GPT)-based chatbot that recommends customized products through conversation.

To learn more about ADCIO, please visit the ADCIO website

Getting Started #

To get started with ADCIO account, please register ADCIO account

Usage #

NOTE: All adcio packages require the adcio_core package as a dependency and make use of initializeApp() for setup.

There is a simple use example:

import 'package:adcio_placement/adcio_placement.dart';

@override
Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      ...
      title: const Text('adcio_agent example app'),
    ),
    body: AdcioAgent(
      onClickProduct: (String productId) {
        log('productId = $productId');

        // Navigation and routing
        final route = MaterialPageRoute(
          builder: (context) => DemoProductPage(
            productId: productId,
          ),
        );
        Navigator.of(context).push(route);
      },
    ),
  );
}

To learn more about usage of plugin, please visit the adcio_agent Usage documentation.

Issues and feedback #

If the plugin has issues, bugs, feedback, Please contact dev@corca.ai.

1
likes
130
pub points
0%
popularity

Publisher

verified publishercorca.ai

This is a Flutter agent for the ADCIO project, a chatbot based on LLM(GPT) that suggests personalized products through conversations

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

adcio_core, flutter, webview_flutter

More

Packages that depend on adcio_agent