la04 commited on
Commit
44a313b
·
verified ·
1 Parent(s): 2ec50b6

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +21 -0
pyproject.toml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "chatbot-rag"
3
+ version = "0.1.0"
4
+ description = "Chatbot mit LangChain und Gradio in Hugging Face Spaces"
5
+ authors = ["Dein Name <[email protected]>"]
6
+
7
+ [tool.poetry.dependencies]
8
+ python = "^3.9"
9
+ gradio = "^3.0"
10
+ requests = "^2.26"
11
+ langchain = "^0.0.100"
12
+ langchain-community = "^0.0.100"
13
+ transformers = "^4.12.0"
14
+ pydantic = "^1.8.2"
15
+ faiss-cpu = "^1.7.0"
16
+ uvicorn = "^0.15.0" # Falls du FastAPI weiterhin verwenden möchtest
17
+ # Weitere Abhängigkeiten nach Bedarf hinzufügen
18
+
19
+ [build-system]
20
+ requires = ["poetry-core>=1.0.0"]
21
+ build-backend = "poetry.core.masonry.api"