mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
CoAgents Agent Q&A Example
This example demonstrates sending a textual question to the user.
You can find an online demo of this example here.
These instructions assume you are in the coagents-qa-text/ directory
Running the Agent
First, install the dependencies:
cd agent
poetry install
Then, create a .env file inside ./agent with the following:
OPENAI_API_KEY=...
IMPORTANT: Make sure the OpenAI API Key you provide, supports gpt-4o.
Then, run the demo:
poetry run demo
Running the UI
First, install the dependencies:
cd ./ui
pnpm i
Then, create a .env file inside ./ui with the following:
OPENAI_API_KEY=...
Then, run the Next.js project:
pnpm run dev
Usage
Navigate to http://localhost:3000.
LangGraph Studio
Run LangGraph studio, then load the ./agent folder into it.
Make sure to create teh .env mentioned above first!
Troubleshooting
A few things to try if you are running into trouble:
- Make sure there is no other local application server running on the 8000 port.
- Under
/agent/greeting_agent/demo.py, change0.0.0.0to127.0.0.1or tolocalhost