Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/agent/langgraph-open-telemetry/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies = [
"langgraph-prebuilt>=0.6.0",
"openai",
"python-dotenv>=1.1.0",
"splunk-ao[otel]",
"splunk-ao",
"opentelemetry-instrumentation-langchain>=0.48.1",
"opentelemetry-instrumentation-openai-v2>=2.1b0",
]
Expand Down
2 changes: 1 addition & 1 deletion examples/agent/microsoft-agent-framework/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
agent-framework>=1.0.0b251120
splunk-ao[otel]
splunk-ao
pydantic
2 changes: 1 addition & 1 deletion examples/agent/pydantic-ai-support-agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ description = "An example project for using Splunk AO with PydanticAI."
readme = "README.md"
requires-python = ">=3.11, <3.14"
dependencies = [
"splunk-ao[otel]",
"splunk-ao",
"pydantic-ai>=1.0.0",
]
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uvicorn==0.34.0
openai==1.82.0
langgraph==0.4.1
chromadb-client==0.6.3
splunk-ao[otel]
splunk-ao
opentelemetry-api
opentelemetry-sdk
opentelemetry-exporter-otlp-proto-http
Expand Down
254 changes: 112 additions & 142 deletions poetry.lock

Large diffs are not rendered by default.

13 changes: 4 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ langchain = ["langchain-core", "langchain"]
openai = ["openai (>=2.8.0,<3.0.0)", "packaging (>=24.2,<25.0)", "openai-agents (>=0.4.0,<1.0.0)"]
crewai = ["crewai (>=0.152.0,<2.0.0); python_version < '3.14'", "litellm (>=1.83.14,<2.0.0); python_version < '3.14'"]
middleware = ["starlette"]
otel = ["opentelemetry-sdk (>=1.38.0,<2.0.0)", "opentelemetry-api (>=1.38.0,<2.0.0)", "opentelemetry-exporter-otlp (>=1.38.0,<2.0.0)", "grpcio (>=1.80.0,<2.0.0)"]
all = ["langchain-core", "langchain", "openai (>=2.8.0,<3.0.0)", "packaging (>=24.2,<25.0)", "openai-agents (>=0.4.0,<1.0.0)", "opentelemetry-sdk (>=1.38.0,<2.0.0)", "opentelemetry-api (>=1.38.0,<2.0.0)", "opentelemetry-exporter-otlp (>=1.38.0,<2.0.0)", "grpcio (>=1.80.0,<2.0.0)", "crewai (>=0.152.0,<2.0.0); python_version < '3.14'", "starlette", "litellm (>=1.83.14,<2.0.0); python_version < '3.14'"]
all = ["langchain-core", "langchain", "openai (>=2.8.0,<3.0.0)", "packaging (>=24.2,<25.0)", "openai-agents (>=0.4.0,<1.0.0)", "crewai (>=0.152.0,<2.0.0); python_version < '3.14'", "starlette", "litellm (>=1.83.14,<2.0.0); python_version < '3.14'"]



Expand All @@ -47,13 +46,9 @@ backoff = "^2.2.1"
crewai = { version = ">=0.152.0,<2.0.0", optional = true, python = ">=3.11,<3.14" }
tqdm = { version = ">=4.0.0" }
typing-extensions = { version = ">=4.5.0" }
opentelemetry-sdk = { version = "^1.38.0", optional = true }
opentelemetry-api = { version = "^1.38.0", optional = true }
opentelemetry-exporter-otlp = { version = "^1.38.0", optional = true }
# Explicit lower bound ensures pre-built cp314 wheels are available (1.80.0+).
# Without this, resolvers could pick grpcio<1.80.0 which has no cp314 wheels,
# forcing source compilation (~20 min) on Python 3.14 CI runners.
grpcio = { version = ">=1.80.0,<2.0.0", optional = true }
opentelemetry-sdk = "^1.38.0"
opentelemetry-api = "^1.38.0"
opentelemetry-exporter-otlp-proto-http = "^1.38.0"

[tool.poetry.group.test.dependencies]
pytest = "^8.4.0"
Expand Down
2 changes: 1 addition & 1 deletion splunk-ao-a2a/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dev = [
"ruff>=0.12.3",
"mypy>=1.16.0",
"opentelemetry-instrumentation>=0.61b0",
"splunk-ao[otel]>=0.1.0,<1.0.0",
"splunk-ao>=0.1.0,<1.0.0",
]
examples = [
"uvicorn>=0.42.0",
Expand Down
2 changes: 1 addition & 1 deletion splunk-ao-adk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ dev = [
"ruff>=0.12.3",
"mypy>=1.16.0",
"coverage>=7.9.2",
"splunk-ao[otel]>=0.1.0,<1.0.0",
"splunk-ao>=0.1.0,<1.0.0",
"galileo-core[testing]>=3.82.0",
]

Expand Down
Loading
Loading