demospreadsheet.1.mp4
Create a .env file at the root of your project:
touch .envAdd the following to .env:
LANGSMITH_API_KEY=lsv2_...
OPENAI_API_KEY=sk-...Next, navigate to the agent folder and create another .env file:
cd agent
touch .envAdd the following inside agent/.env:
OPENAI_API_KEY=sk-...
LANGSMITH_API_KEY=lsv2_...Poetry manages dependencies for the agent service. Install it with:
pip install poetryVerify the installation by running:
poetry --versionFor easier debugging, run the frontend and agent in separate terminals:
# Terminal 1 - Frontend
pnpm run dev-frontend
# Terminal 2 - Agent
pnpm run dev-agentAlternatively, launch both services together:
pnpm run devVisit
The codebase is organized into two primary components:
- Frontend - Handles the user interface.
- Agent - Manages the core functionality.
Distributed under the MIT License. See LICENSE for more info.
