Skip to content

Commit

Permalink
Merge pull request #7 from leftmove/llama-update
Browse files Browse the repository at this point in the history
Llama update
  • Loading branch information
leftmove authored Aug 21, 2024
2 parents 5d578bd + f622f83 commit e114374
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ with cria.Model() as ai:
```

> [!WARNING]
> If no model is configured, Cria automatically installs and runs the default model: `llama3:8b` (4.7GB).
> If no model is configured, Cria automatically installs and runs the default model: `llama3.1:8b` (4.7GB).
## Installation

Expand Down
2 changes: 1 addition & 1 deletion src/cria.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from ollama._client import Client as OllamaClient

DEFAULT_MODEL = "llama3:8b"
DEFAULT_MODEL = "llama3.1:8b"
DEFAULT_MESSAGE_HISTORY = [
{"role": "system", "content": "You are a helpful AI assistant."}
]
Expand Down

0 comments on commit e114374

Please sign in to comment.