We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab0851 commit 566dc85Copy full SHA for 566dc85
apps/dojo/src/app/[integrationId]/feature/agentic_chat/page.tsx
@@ -5,6 +5,8 @@ import "./style.css";
5
import {
6
CopilotKit,
7
useFrontendTool,
8
+ useHumanInTheLoop,
9
+ useCopilotReadable,
10
} from "@copilotkit/react-core";
11
import { CopilotChat } from "@copilotkit/react-ui";
12
@@ -32,6 +34,10 @@ const AgenticChat: React.FC<AgenticChatProps> = ({ params }) => {
32
34
const Chat = () => {
33
35
const [background, setBackground] = useState<string>("--copilot-kit-background-color");
36
37
+ useCopilotReadable({
38
+ description: 'Name of the user',
39
+ value: 'Bob'
40
+ })
41
useFrontendTool({
42
name: "change_background",
43
description:
0 commit comments