mirror of
https://github.com/corca-ai/EVAL
synced 2024-10-30 09:20:44 +00:00
1fdf63741f
* feat: exp * feat: watch syscall * feat: terminal tool with syscall tracer * refactor: move editor into tools * fix: errors * refactor: syscall and terminal * fix: USE_GPU option * fix: hard code playground dir * fix: toolsets * fix: terminal cwd playground * feat: wait syscall with timeout * fix: reset timer on wait_until_stop_or_exit ends * fix: handle in case exception is tuple
46 lines
1011 B
TOML
46 lines
1011 B
TOML
[tool.poetry]
|
|
name = "eval"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Taeho Lee <taeho@corca.ai>", "Chung Hwan Han <hanch@corca.ai>"]
|
|
packages = [{include = "api"}]
|
|
|
|
[tool.poetry.scripts]
|
|
serve = "api.main:serve"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.94.1"
|
|
langchain = "^0.0.115"
|
|
diffusers = "^0.14.0"
|
|
pydantic = "^1.10.6"
|
|
tenacity = "^8.2.2"
|
|
llama-index = "^0.4.29"
|
|
python-dotenv = "^1.0.0"
|
|
torch = "^2.0.0"
|
|
pillow = "^9.4.0"
|
|
boto3 = "^1.26.94"
|
|
uvicorn = "^0.21.1"
|
|
accelerate = "^0.17.1"
|
|
transformers = {git = "https://github.com/huggingface/transformers.git", rev = "main"}
|
|
sentencepiece = "^0.1.97"
|
|
bitsandbytes = "^0.37.2"
|
|
python-ptrace = "^0.9.8"
|
|
|
|
[tool.poetry.group.tools]
|
|
optional = true
|
|
|
|
[tool.poetry.group.tools.dependencies]
|
|
psycopg2-binary = "^2.9.5"
|
|
wikipedia = "^1.4.0"
|
|
google-search-results = "^2.4.2"
|
|
beautifulsoup4 = "^4.11.2"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.1.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|