Supercharge your existing Web/React App with a Siri-like Native AI Assistant.
These agents focuses on reducing learning curve for user and enalbes handsfree expereince for content discovery, feature discovery, user onboarding and form filling.
Goal is to create an open protocol for AI Assistants, Agents & Actions. Checkout Future of AI Assistants using this sdk.
For details instructions. Read docs
Before using this package, ensure you have the following:
An existing React application
Create copilot credentials from Sugar AI or Self Hosted Account
You can install the @sugar-ai/copilot-one-js
package via npm in your react project
npm install @sugar-ai/copilot-one-js@latest
In your main file. src/App.tsx
import { useCopilot, CopilotConfigType, CopilotProvider, VoiceAssistant } from '@sugar-ai/copilot-one-js';
const copilotConfig: CopilotConfigType = {
copilotId: "<copilotId>",
server: {
endpoint: "http://play.sugarcaneai.dev/api",
token: "<token>",
},
ai: {
defaultPromptTemplate: "<prompt template>",
defaultPromptVariables: {
$AGENT_NAME: "Sugar",
},
successResponse: "Task is completed",
failureResponse: "I am not able to do this"
},
}
// Wrap the App with Copilot Provider
<CopilotProvider config={copilotConfig}>
<TodoApp />
</CopilotProvider>
We are taking a exmple of a todo App. To track User's Current Screen Context using useStateEmbedding
const TodoApp = () => {
const { useStateEmbedding, registerAction, unregisterAction } = useCopilot(); // Add
// const [todos, setTodos] = useState([]);
const [todos, setTodos] = useStateEmbedding([], {scope1:"todoApp", scope2: "todos"}); // Switch
...
}
Register functions for create, delete and mark as done.
const TodoApp = () => {
...
// Functionalies
const addTodo = (task) => {...}};
const deleteTodo = (task) => {...};
const markTodoAsDoneById = function (todoId: number) {...};
// Register addTodo function
registerAction(
"addTodo",
{
name: "addTodo",
description: "Add a new todo",
parameters: [
{
name: "task",
type: "string",
description: "Task description",
required: true,
}
],
},
addTodo,
);
...
}
Web SDK Released
POC
[] Navigation Agent
[] Form Agent