-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (56 loc) · 1.15 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
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
[project]
name = "observers"
version = "0.2.0"
description = "🤗 Observers: A Lightweight Library for AI Observability"
authors = [
{name = "davidberenstein1957", email = "david.m.berenstein@gmail.com"},
]
tags = [
"observability",
"monitoring",
"logging",
"model-monitoring",
"model-observability",
"generative-ai",
"ai",
"traceability",
"instrumentation",
"instrumentation-library",
"instrumentation-sdk",
]
requires-python = "<3.13,>=3.10"
readme = "README.md"
license = {text = "Apache 2"}
dependencies = [
"duckdb>=1.0.0",
"datasets>=3.0.0",
"openai>=1.50.0",
"argilla>=2.3.0",
]
[project.optional-dependencies]
aisuite = [
"aisuite[all]>=0.1.6",
]
dev = [
"pytest>=8.3.3",
"black>=24.10.0",
"jinja2>=3.1.4",
"pytest-asyncio>=0.25.1",
]
litellm = [
"litellm>=1.52",
]
transformers = [
"transformers>=4.46.0",
"torch>=2",
]
opentelemetry = [
"opentelemetry-api>=1.28.0",
"opentelemetry-sdk>=1.28.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.28.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true