mirror of
https://github.com/katanemo/plano.git
synced 2026-05-05 05:42:49 +02:00
add preliminary support for llm agents (#432)
This commit is contained in:
parent
8d66fefded
commit
84cd1df7bf
29 changed files with 1388 additions and 121 deletions
20
demos/use_cases/orchestrating_agents/pyproject.toml
Normal file
20
demos/use_cases/orchestrating_agents/pyproject.toml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[tool.poetry]
|
||||
name = "api-server"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["Adil Hafeez <info@katanemo.com>"]
|
||||
readme = "README.md"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
fastapi = "^0.115.4"
|
||||
pyyaml = "^6.0.2"
|
||||
uvicorn = "^0.34.0"
|
||||
openai = "^1.66.5"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
api-server = "api_server.main:app"
|
||||
Loading…
Add table
Add a link
Reference in a new issue