Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
8 changes: 8 additions & 0 deletions eval_protocol/adapters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
Available adapters:
- BaseAdapter: Abstract base class for all adapters
- LangfuseAdapter: Pull data from Langfuse deployments
- FireworksTracingAdapter: Pull data from Langfuse via Fireworks tracing proxy
- HuggingFaceAdapter: Load datasets from HuggingFace Hub
- BigQueryAdapter: Query data from Google BigQuery
- TRL integration (legacy)
Expand All @@ -24,6 +25,13 @@
except ImportError:
pass

try:
from .fireworks_tracing import FireworksTracingAdapter, create_fireworks_tracing_adapter
Comment thread
xzrderek marked this conversation as resolved.
Outdated

__all__.extend(["FireworksTracingAdapter", "create_fireworks_tracing_adapter"])
except ImportError:
pass

try:
from .huggingface import (
HuggingFaceAdapter,
Expand Down
Loading