rebase and fix the versions adding lock file

This commit is contained in:
Anas Dorbani 2024-04-03 22:08:28 +00:00
parent 3dad4e4f2e
commit a03b614447
4 changed files with 5652 additions and 24 deletions

1
.gitignore vendored
View File

@ -2,7 +2,6 @@
__pycache__/
*.py[cod]
*$py.class
*.lock
# C extensions
*.so

View File

@ -20,6 +20,7 @@ build:
@poetry install
@echo "Activating Poetry shell..."
@echo "Installing pre-commit hooks..."
@git config --unset-all core.hooksPath
@poetry run pre-commit install --config $(PRECOMMIT_CONFIG_PATH)
@echo "Setting up frontend environment..."
@echo "Detect Node.js version..."

5628
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -9,36 +9,36 @@ repository = "https://github.com/OpenDevin/OpenDevin"
[tool.poetry.dependencies]
python = "^3.11"
datasets = "^2.18.0"
pandas = "^2.2.1"
litellm = "^1.34.13"
termcolor = "^2.4.0"
datasets = "*"
pandas = "*"
litellm = "*"
termcolor = "*"
torch = {version = "*", source = "pytorch"}
seaborn = "^0.13.2"
docker = "^7.0.0"
fastapi = "^0.110.0"
toml = "^0.10.2"
uvicorn = "^0.29.0"
types-toml = "^0.10.8.20240310"
numpy = "^1.26.4"
json-repair = "^0.11.1"
playwright = "^1.42.0"
seaborn = "*"
docker = "*"
fastapi = "*"
toml = "*"
uvicorn = "*"
types-toml = "*"
numpy = "*"
json-repair = "*"
playwright = "*"
[tool.poetry.group.llama-index.dependencies]
llama-index = "^0.10.25"
llama-index-vector-stores-chroma = "^0.1.6"
chromadb = "^0.4.24"
llama-index-embeddings-huggingface = "^0.2.0"
llama-index-embeddings-azure-openai = "^0.1.6"
llama-index-embeddings-ollama = "^0.1.2"
llama-index = "*"
llama-index-vector-stores-chroma = "*"
chromadb = "*"
llama-index-embeddings-huggingface = "*"
llama-index-embeddings-azure-openai = "*"
llama-index-embeddings-ollama = "*"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.4"
mypy = "^1.9.0"
pre-commit = "^3.7.0"
ruff = "*"
mypy = "*"
pre-commit = "*"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
pytest = "*"
[[tool.poetry.source]]
name = "pytorch"