File size: 600 Bytes
19b1388 e9e79ff 19b1388 e9e79ff 19b1388 |
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 |
[tool.poetry]
name = "streamlit-agent"
version = "0.1.0"
description = ""
authors = ["Tim Conkling <[email protected]>", "Joshua Carroll <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "streamlit_agent"}]
[tool.poetry.dependencies]
python = "^3.11"
langchain = ">=0.0.229"
streamlit = ">=1.24.0"
openai = "^0.27.8"
duckduckgo-search = "^3.8.3"
pydantic = "=1.10.9"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
mypy = "^1.4.1"
pre-commit = "^3.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|