Spaces:
Sleeping
Sleeping
Jorge Londoño
commited on
Commit
·
8ea0e72
1
Parent(s):
b9b0ca7
Initial version created
Browse files- .gitignore +2 -0
- pyproject.toml +30 -0
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
poetry.lock
|
| 2 |
+
.env
|
pyproject.toml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[tool.poetry]
|
| 2 |
+
name = "DataStructures_and_Algorithms"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = ""
|
| 5 |
+
authors = ["Jorge Londoño <jorge.londono@upb.edu.co>"]
|
| 6 |
+
readme = "README.md"
|
| 7 |
+
|
| 8 |
+
[tool.poetry.dependencies]
|
| 9 |
+
python = ">=3.11, <3.13"
|
| 10 |
+
python-dotenv = "^1.0.1"
|
| 11 |
+
pydantic = "^2.9.2"
|
| 12 |
+
langchain = "^0.3.7"
|
| 13 |
+
langchain-community = "^0.3.5"
|
| 14 |
+
langchainhub = "^0.1.21"
|
| 15 |
+
langchain-huggingface = "^0.1.2"
|
| 16 |
+
langgraph = "^0.2.45"
|
| 17 |
+
langchain-openai = "^0.2.6"
|
| 18 |
+
langchain-groq = "^0.2.1"
|
| 19 |
+
langchain-aws = "^0.2.7"
|
| 20 |
+
pinecone-client = "^5.0.1"
|
| 21 |
+
langchain-pinecone = "^0.2.0"
|
| 22 |
+
pypdf = "^5.1.0"
|
| 23 |
+
gradio = "^5.5.0"
|
| 24 |
+
openai-whisper = "^20240930"
|
| 25 |
+
groq = "^0.11.0"
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
[build-system]
|
| 29 |
+
requires = ["poetry-core"]
|
| 30 |
+
build-backend = "poetry.core.masonry.api"
|