-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[tool.pyright]
include = ["app.py","story_book_agents"]
exclude = [".cache","**/__pycache__"]
[tool.poetry]
name = "agentic story book workflow"
version = "0.1.0"
description = "A multi-agent workflow framework for creating children's picture books based on AutoGen."
authors = ["Kenn Zhang <breakstring@hotmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pyautogen = "0.2.33"
agentops = "0.2.6"
anthropic="0.32.0"
azure-cognitiveservices-speech="1.38.0"
llmlingua="0.2.2"
moviepy="1.0.3"
pip-chill="1.0.3"
python-pptx="0.6.23"
replicate="0.27.0"
tinydb="4.8.0"
[tool.poetry.group.dev.dependencies]
pip-chill = "1.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"