Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/examples-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,11 @@ jobs:
- { path: 'examples/openai_agents/agents_tools.py', name: 'OpenAI Agents Tools' }
- { path: 'examples/openai_agents/customer_service_agent.py', name: 'OpenAI Agents Customer Service' }

# DSPy examples
- { path: 'examples/dspy/dspy_calculator.py', name: 'DSPy ReAct Agent' }
# Add more examples as needed


steps:
- uses: actions/checkout@v4

Expand Down
11 changes: 11 additions & 0 deletions agentops/integration/callbacks/dspy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
DSPy integration for AgentOps.

This module provides the AgentOps DSPy integration, including callbacks and utilities.
"""

from agentops.integration.callbacks.dspy.callback import DSPyCallbackHandler

__all__ = [
"DSPyCallbackHandler",
]
Loading
Loading