Skip to content

Commit

Permalink
docs: move to Llama 3.2 as default in examples (#95)
Browse files Browse the repository at this point in the history
* docs: move to Llama 3.2 as default in examples

* Update hosted-models.mdx
  • Loading branch information
ryanfoxtyler authored Feb 18, 2025
1 parent fb9c79a commit e8b9e09
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions hosted-models.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ specified on Hugging Face.
...
"models": {
"text-generator": {
"sourceModel": "meta-llama/Meta-Llama-3.1-8B-Instruct",
"sourceModel": "meta-llama/Llama-3.2-3B-Instruct",
"provider": "hugging-face",
"connection": "hypermode"
}
Expand All @@ -44,7 +44,6 @@ your project.

These are the models available currently with shared instances:

- [`meta-llama/Meta-Llama-3.1-8B-Instruct`](https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct)
- [`meta-llama/Llama-3.2-3B-Instruct`](https://huggingface.co/meta-llama/Llama-3.2-3B-Instruct)
- [`deepseek-ai/DeepSeek-R1-Distill-Llama-8B`](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Llama-8B)
- [`sentence-transformers/all-MiniLM-L6-v2`](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2)
Expand Down
2 changes: 1 addition & 1 deletion modus/app-manifest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ alphanumeric characters and hyphens.
{
"models": {
"text-generator": {
"sourceModel": "meta-llama/Meta-Llama-3.1-8B-Instruct",
"sourceModel": "meta-llama/Llama-3.2-3B-Instruct",
"provider": "hugging-face",
"connection": "hypermode"
}
Expand Down
4 changes: 2 additions & 2 deletions modus/model-invoking.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ examples:
{
...
"models": {
// model card: https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct
// model card: https://huggingface.co/meta-llama/Llama-3.2-3B-Instruct
"text-generator": {
"sourceModel": "meta-llama/Meta-Llama-3.1-8B-Instruct", // model name on the provider
"sourceModel": "meta-llama/Llama-3.2-3B-Instruct", // model name on the provider
"provider": "hugging-face", // provider for this model
"connection": "hypermode" // host where the model is running
}
Expand Down
2 changes: 1 addition & 1 deletion modus/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ learn how to use the basic components of a Modus app and how to run it locally.
```json
"models": {
"text-generator": {
"sourceModel": "meta-llama/Meta-Llama-3.1-8B-Instruct",
"sourceModel": "meta-llama/Llama-3.2-3B-Instruct",
"provider": "hugging-face",
"connection": "hypermode"
}
Expand Down
2 changes: 1 addition & 1 deletion quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ the basic components of a Modus app and how to deploy it to Hypermode.

```json
{
"model": "meta-llama/Meta-Llama-3.1-8B-Instruct",
"model": "meta-llama/Llama-3.2-3B-Instruct",
"messages": [
{
"role": "system",
Expand Down

0 comments on commit e8b9e09

Please sign in to comment.