From 83716778a63c3103ba59cacbafd06881f6004d5a Mon Sep 17 00:00:00 2001 From: angkk2u Date: Wed, 26 Mar 2025 12:55:08 +0900 Subject: [PATCH] Update new API models Updates based on the new API models --- .../providers/perplexity_manifold_pipeline.py | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/pipelines/providers/perplexity_manifold_pipeline.py b/examples/pipelines/providers/perplexity_manifold_pipeline.py index 2d87aff..c985b65 100644 --- a/examples/pipelines/providers/perplexity_manifold_pipeline.py +++ b/examples/pipelines/providers/perplexity_manifold_pipeline.py @@ -30,26 +30,26 @@ class Pipeline: # List of models self.pipelines = [ { - "id": "llama-3.1-sonar-large-128k-online", - "name": "Llama 3.1 Sonar Large 128k Online" + "id": "sonar-pro", + "name": "Sonar Pro" }, { - "id": "llama-3.1-sonar-small-128k-online", - "name": "Llama 3.1 Sonar Small 128k Online" + "id": "sonar", + "name": "Sonar" }, { - "id": "llama-3.1-sonar-large-128k-chat", - "name": "Llama 3.1 Sonar Large 128k Chat" + "id": "sonar-deep-research", + "name": "Sonar Deep Research" }, { - "id": "llama-3.1-sonar-small-128k-chat", - "name": "Llama 3.1 Sonar Small 128k Chat" + "id": "sonar-reasoning-pro", + "name": "Sonar Reasoning Pro" }, { - "id": "llama-3.1-8b-instruct", "name": "Llama 3.1 8B Instruct" + "id": "sonar-reasoning", "name": "Sonar Reasoning" }, { - "id": "llama-3.1-70b-instruct", "name": "Llama 3.1 70B Instruct" + "id": "r1-1776", "name": "R1-1776" } ] pass