feat(pyproject): add new dependencies for project

- 添加`agno`、`anthropic`和`notebook`作为项目依赖
- 确保项目能够使用这些库以实现新的功能

 feat(notebook.ipynb): enhance notebook with new code cell

- 在Jupyter笔记本中添加新的代码单元以执行打印操作
- 更新内核配置以使用`.venv`环境
This commit is contained in:
2025-03-30 23:16:31 +08:00
parent 33487a746c
commit d45eecda50
3 changed files with 1711 additions and 2 deletions

View File

@@ -4,4 +4,8 @@ version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = []
dependencies = [
"agno>=1.2.6",
"anthropic>=0.49.0",
"notebook>=7.3.3",
]

1674
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -16,11 +16,42 @@
"- [ ] 精通关系型数据库系统的理论知识以及`postgresql`的实现细节(知识库)\n",
"- [ ] 能够使用`postgresql mcp server`来分析现有数据库设计(行为)\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1\n"
]
}
],
"source": [
"print(1)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python"
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.8"
}
},
"nbformat": 4,