From 7a6be4678f5dea9b26a12afe31e98874df653ca5 Mon Sep 17 00:00:00 2001 From: Kevin Mingtarja Date: Sun, 3 Nov 2024 20:48:20 +0700 Subject: [PATCH] Fix references to llama3.1 on hugging face --- hosted-models.mdx | 4 ++-- modus/app-manifest.mdx | 2 +- modus/model-invoking.mdx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hosted-models.mdx b/hosted-models.mdx index 357ca526..5c3ad06a 100644 --- a/hosted-models.mdx +++ b/hosted-models.mdx @@ -21,7 +21,7 @@ specified on Hugging Face. ... "models": { "text-generator": { - "sourceModel": "meta-llama/Llama-3.1-8B-Instruct", + "sourceModel": "meta-llama/Meta-Llama-3.1-8B-Instruct", "provider": "hugging-face", "connection": "hypermode" } @@ -44,7 +44,7 @@ your project. These are the models available currently with shared instances: -- [`meta-llama/Meta-Llama-3.1-8B-Instruct`](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct) +- [`meta-llama/Meta-Llama-3.1-8B-Instruct`](https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct) - [`sentence-transformers/all-MiniLM-L6-v2`](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2) - [`AntoineMC/distilbart-mnli-github-issues`](https://huggingface.co/AntoineMC/distilbart-mnli-github-issues) - [`distilbert/distilbert-base-uncased-finetuned-sst-2-english`](https://huggingface.co/distilbert/distilbert-base-uncased-finetuned-sst-2-english) diff --git a/modus/app-manifest.mdx b/modus/app-manifest.mdx index f47899ca..e271059a 100644 --- a/modus/app-manifest.mdx +++ b/modus/app-manifest.mdx @@ -337,7 +337,7 @@ alphanumeric characters and hyphens. { "models": { "text-generator": { - "sourceModel": "meta-llama/Llama-3.1-8B-Instruct", + "sourceModel": "meta-llama/Meta-Llama-3.1-8B-Instruct", "provider": "hugging-face", "connection": "hypermode" } diff --git a/modus/model-invoking.mdx b/modus/model-invoking.mdx index bb2518de..8e947248 100644 --- a/modus/model-invoking.mdx +++ b/modus/model-invoking.mdx @@ -26,9 +26,9 @@ examples: { ... "models": { - // model card: https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct + // model card: https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct "text-generator": { - "sourceModel": "meta-llama/Llama-3.1-8B-Instruct", // model name on the provider + "sourceModel": "meta-llama/Meta-Llama-3.1-8B-Instruct", // model name on the provider "provider": "hugging-face", // provider for this model "connection": "hypermode" // host where the model is running }