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
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
"metadata": {
"endpointUrl": "https://router.huggingface.co/featherless-ai/v1/completions",
"max_tokens": 4,
"model": "meta-llama/Llama-3.1-8B",
"model": "arcee-ai/Trinity-Large-Thinking",
"provider": "huggingface"
},
"metrics": {
Expand All @@ -382,9 +382,9 @@
"log_id": "g",
"metrics": {
"completion_tokens": 4,
"prompt_tokens": 5,
"prompt_tokens": 6,
"time_to_first_token": "<number>",
"tokens": 9
"tokens": 10
},
"project_id": "<project_id>",
"root_span_id": "<span:2>",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"metadata": {
"endpointUrl": "https://router.huggingface.co/featherless-ai/v1/completions",
"finish_reason": "length",
"model": "meta-llama/Llama-3.1-8B",
"model": "arcee-ai/Trinity-Large-Thinking",
"provider": "huggingface"
},
"metric_keys": [
Expand Down
3 changes: 2 additions & 1 deletion e2e/scenarios/huggingface-instrumentation/scenario.impl.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const ROOT_NAME = "huggingface-instrumentation-root";
const SCENARIO_NAME = "huggingface-instrumentation";
const TEXT_GENERATION_MODEL = "meta-llama/Llama-3.1-8B";
const TEXT_GENERATION_PROVIDER = "featherless-ai";
const V2_TEXT_GENERATION_MODEL = "arcee-ai/Trinity-Large-Thinking";
const HUGGINGFACE_SCENARIO_TIMEOUT_MS = 150_000;
const V2_CHAT_ENDPOINT_URL = "https://router.huggingface.co";
const V2_FEATURE_EXTRACTION_ENDPOINT_URL =
Expand Down Expand Up @@ -168,7 +169,7 @@ async function runHuggingFaceInstrumentationScenario(sdk, options = {}) {
endpointUrl: V2_TEXT_GENERATION_ENDPOINT_URL,
inputs: "The capital of France is",
max_tokens: 4,
model: TEXT_GENERATION_MODEL,
model: V2_TEXT_GENERATION_MODEL,
prompt: "The capital of France is",
}),
});
Expand Down
Loading