Spaces:
Runtime error
Runtime error
File size: 1,331 Bytes
40a9b82 532a759 40a9b82 e34be6c 40a9b82 532a759 2756582 09a337f 40a9b82 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | [tool.poetry]
name = "edu-assistant"
version = "0.1.0"
description = ""
authors = ["codedog-ai"]
license = "MIT"
readme = "README.md"
packages = [{include = "edu_assistant"}]
[tool.poetry.dependencies]
python = "^3.10 <3.12"
fastapi = "^0.95.1"
langchain = "^0.0.234"
openai = "^0.27.4"
pydantic = "^1.10.7"
tenacity = "^8.2.2"
uvicorn = "^0.21.1"
qdrant-client = "^1.3.1"
tiktoken = "^0.4.0"
gradio = "^3.37.0"
redis = "^4.6.0"
pydantic-redis = "^0.4.3"
pycryptodome = "^3.18.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pytest = "^7.2.1"
pytest-asyncio = "^0.20.3"
pytest-cov = "^4.0.0"
python-semantic-release = "^7.34.6"
[tool.poetry.scripts]
start = "edu_assistant.server:start"
[[tool.poetry.source]]
name = "aliyun"
url = "http://mirrors.aliyun.com/pypi/simple"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.semantic_release]
version_variable = "./edu_assistant/version.py:VERSION"
build_command = false
upload_to_pypi = false
upload_to_repository = false
upload_to_release = false
commit_message = 'chore(release): release version {version}'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|