From d7c55f0ad0970ba93aee8e0adbc3f54f9bc1c411 Mon Sep 17 00:00:00 2001 From: Yogish Baliga Date: Wed, 25 Sep 2024 21:24:36 -0700 Subject: [PATCH] fixing model names --- .../providers/adapters/inference/together/together.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/llama_stack/providers/adapters/inference/together/together.py b/llama_stack/providers/adapters/inference/together/together.py index e9af6f17c..a56b18d7d 100644 --- a/llama_stack/providers/adapters/inference/together/together.py +++ b/llama_stack/providers/adapters/inference/together/together.py @@ -26,12 +26,9 @@ TOGETHER_SUPPORTED_MODELS = { "Llama3.1-8B-Instruct": "meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo", "Llama3.1-70B-Instruct": "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo", "Llama3.1-405B-Instruct": "meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo", - "Llama3.2-1B-Instruct": "meta-llama/Meta-Llama-3.2-1B-Instruct-Turbo", - "Llama3.2-3B-Instruct": "meta-llama/Meta-Llama-3.2-3B-Instruct-Turbo", - "Llama3.2-11B-Vision": "meta-llama/Meta-Llama-3.2-11B-Vision-Turbo", - "Llama3.2-90B-Vision": "meta-llama/Meta-Llama-3.2-90B-Vision-Turbo", - "Llama3.2-11B-Vision-Instruct": "meta-llama./Meta-Llama-3.2-11B-Vision-Turbo", - "Llama3.2-90B-Vision-Instruct": "meta-llama/Meta-Llama-3.2-90B-Vision-Turbo", + "Llama3.2-3B-Instruct": "meta-llama/Llama-3.2-3B-Instruct-Turbo", + "Llama3.2-11B-Vision-Instruct": "meta-llama/Llama-3.2-11B-Vision-Instruct-Turbo", + "Llama3.2-90B-Vision-Instruct": "meta-llama/Llama-3.2-90B-Vision-Instruct-Turbo", }