20 lines
286 B
Markdown
20 lines
286 B
Markdown
# Llama Index Agent Starter: Python
|
|
|
|
This package is a quick starter example for building AG-UI agents with Llama Index and CopilotKit.
|
|
|
|
## Running the Backend
|
|
|
|
```bash
|
|
export OPENAI_API_KEY=...
|
|
uv sync
|
|
uv run dev
|
|
```
|
|
|
|
## Running the Frontend
|
|
|
|
```bash
|
|
cd ..
|
|
npm install
|
|
npm run dev
|
|
```
|