-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 895 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "LocalLLMTrace"
version = "0.1.0"
description = "Local LLM Trace - OpenAI-compatible API proxy with LLM trace visualization"
authors = ["JourneyPeng <[email protected]>"]
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
fastapi = "^0.115.6"
uvicorn = "^0.34.0"
httpx = "^0.28.1"
python-dotenv = "^1.0.0"
openai = "^1.12.0"
# opentelemetry-api = "^1.24.0"
# opentelemetry-sdk = "^1.24.0"
# opentelemetry-exporter-otlp = "^1.24.0"
# opentelemetry-instrumentation-fastapi = "^0.45b0"
# arize-phoenix = "^0.15.0"
arize-phoenix = "^7.8.1"
arize-phoenix-otel = "^0.6.1"
openinference-instrumentation-openai = "^0.1.18"
[tool.poetry.group.dev.dependencies]
black = "^23.0"
flake8 = "^6.0"
mypy = "^1.0"
pytest = "^8.3.4"
pytest-asyncio = "^0.25.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"