Files
agno-notebooks/pyproject.toml
cruld e9865b3e5b feat(project): add initial project setup and dependencies
- 新增.gitignore以排除环境文件和IDE配置
- 更新pyproject.toml以添加新依赖:ipywidgets, openai, python-dotenv
- 新建Python脚本以加载环境变量并配置智能体

💄 style(notebook): improve notebook code structure and comments

- 修改notebook中代码块的执行计数为null
- 添加代码注释以提升可读性和理解性
- 引入load_dotenv以支持环境变量加载
2025-03-30 23:50:21 +08:00

15 lines
303 B
TOML

[project]
name = "agno-notebooks"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agno>=1.2.6",
"anthropic>=0.49.0",
"ipywidgets>=8.1.5",
"notebook>=7.3.3",
"openai>=1.69.0",
"python-dotenv>=1.1.0",
]