-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 1.04 KB
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
[tool.poetry]
name = "tmam"
version = "1.6"
description = "OpenTelemetry-native Auto instrumentation library for monitoring LLM Applications and GPUs, facilitating the integration of observability into your GenAI-driven projects"
authors = ["Tmam"]
license = "Apache-2.0"
repository = "https://github.com/python"
readme = "README.md"
homepage = "https://github.com/python"
keywords = ["OpenTelemetry", "otel", "otlp","llm", "tracing", "openai", "anthropic", "claude", "cohere", "llm monitoring", "observability", "monitoring", "gpt", "Generative AI", "chatGPT", "gpu"]
packages = [{ include = "tmam", from = "src" }]
[tool.poetry.dependencies]
python = "^3.12.1"
requests = "^2.32.3"
schedule = "^1.2.2"
pydantic = "^2.10.6"
xmltodict = "^0.14.2"
boto3 = "^1.37.21"
botocore = "^1.37.21"
opentelemetry-api = "^1.31.1"
opentelemetry-sdk = "^1.31.1"
opentelemetry-exporter-otlp = "^1.31.1"
opentelemetry-instrumentation = "^0.52b1"
openai = "^1.68.2"
anthropic = "^0.49.0"
[build-system]
requires = ["poetry-core>=2.1.1"]
build-backend = "poetry.core.masonry.api"