Skip to content

Commit 341a033

Browse files
committed
Fireworks Tracing
1 parent 3b84fe4 commit 341a033

File tree

6 files changed

+501
-16
lines changed

6 files changed

+501
-16
lines changed

eval_protocol/adapters/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Available adapters:
77
- BaseAdapter: Abstract base class for all adapters
88
- LangfuseAdapter: Pull data from Langfuse deployments
9+
- FireworksTracingAdapter: Pull data from Langfuse via Fireworks tracing proxy
910
- HuggingFaceAdapter: Load datasets from HuggingFace Hub
1011
- BigQueryAdapter: Query data from Google BigQuery
1112
- TRL integration (legacy)
@@ -24,6 +25,13 @@
2425
except ImportError:
2526
pass
2627

28+
try:
29+
from .fireworks_tracing import FireworksTracingAdapter, create_fireworks_tracing_adapter
30+
31+
__all__.extend(["FireworksTracingAdapter", "create_fireworks_tracing_adapter"])
32+
except ImportError:
33+
pass
34+
2735
try:
2836
from .huggingface import (
2937
HuggingFaceAdapter,

0 commit comments

Comments
 (0)