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以支持环境变量加载
This commit is contained in:
2025-03-30 23:50:21 +08:00
parent d45eecda50
commit e9865b3e5b
5 changed files with 145 additions and 11 deletions

View File

@@ -7,5 +7,8 @@ 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",
]