poetry init

This commit is contained in:
Tim Conkling
2023-06-26 12:30:12 -04:00
parent 8801446e84
commit be2ffeb262
3 changed files with 1883 additions and 0 deletions
Generated
+1865
View File
File diff suppressed because it is too large Load Diff
+18
View File
@@ -0,0 +1,18 @@
[tool.poetry]
name = "streamlit-agent"
version = "0.1.0"
description = ""
authors = ["Tim Conkling <tconkling@gmail.com>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "streamlit_agent"}]
[tool.poetry.dependencies]
python = "^3.11"
langchain = ">=0.0.211"
streamlit = "^1.23.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
View File