mirror of
https://github.com/furyhawk/agent_alpha.git
synced 2026-07-21 10:35:34 +00:00
- Add package.json with dependencies and scripts for development and build - Create PostCSS configuration for Tailwind CSS and autoprefixer - Implement main App component with chat functionality and message handling - Create API module for sending messages to backend - Add global CSS file with Tailwind directives and custom scrollbar styles - Set up entry point for React application in main.tsx - Define TypeScript environment types for Vite - Configure Tailwind CSS with content paths - Set up TypeScript configuration with strict settings - Configure Vite with React plugin and API proxy for development
19 lines
543 B
TOML
19 lines
543 B
TOML
[project]
|
|
name = "agent-alpha"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi[standard]>=0.136.3",
|
|
"logfire[asyncpg,fastapi,httpx,sqlite3]>=4.36.0",
|
|
"pydantic-ai-backend>=0.2.11",
|
|
"pydantic-ai-harness[code-mode]>=0.3.0",
|
|
"pydantic-ai-shields>=0.3.4",
|
|
"pydantic-ai-skills>=0.11.0",
|
|
"pydantic-ai-slim[duckduckgo,mcp,openai]>=1.107.0",
|
|
"pydantic-ai-todo>=0.2.4",
|
|
"pydantic-deep>=0.3.28",
|
|
"uvicorn[standard]>=0.34.0",
|
|
]
|