- 建立Python项目结构,配置pyproject.toml - 初始化智能体系统基础类和框架 - 添加Python开发环境的完整.gitignore配置 - 配置UV包管理器及锁定文件 - 创建项目脚手架和程序入口 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
236 B
TOML
13 lines
236 B
TOML
[project]
|
|
name = "aim"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"agno>=1.7.9",
|
|
"ollama>=0.5.3",
|
|
"openai>=1.99.6",
|
|
"pydantic>=2.11.7",
|
|
]
|