Skip to content

Commit 1e70efd

Browse files
authored
Merge pull request #12 from anthonywu/llama3.1-safe-to-use
2 parents 708b69a + de8f261 commit 1e70efd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ pip install .
5656

5757
## USAGE
5858

59-
Pull the language model (default is `llama3:8b-instruct-q4_0`) with Ollama first, if you haven't already:
59+
Pull the language model (default is `llama3.1:8b-instruct-q4_0`) with Ollama first, if you haven't already:
6060

6161
```shell
62-
ollama pull llama3:8b-instruct-q4_0
62+
ollama pull llama3.1:8b-instruct-q4_0
6363
```
6464

6565
Next, run the program (with default configuration):
@@ -68,7 +68,7 @@ Next, run the program (with default configuration):
6868
june-va
6969
```
7070

71-
This will use [llama3:8b-instruct-q4_0](https://ollama.com/library/llama3:8b-instruct-q4_0) for LLM capabilities, [openai/whisper-small.en](https://huggingface.co/openai/whisper-small.en) for speech recognition, and `tts_models/en/ljspeech/glow-tts` for audio synthesis.
71+
This will use [llama3.1:8b-instruct-q4_0](https://ollama.com/library/llama3.1:8b-instruct-q4_0) for LLM capabilities, [openai/whisper-small.en](https://huggingface.co/openai/whisper-small.en) for speech recognition, and `tts_models/en/ljspeech/glow-tts` for audio synthesis.
7272

7373
You can also customize behaviour of the program with a json configuration file:
7474

@@ -88,7 +88,7 @@ The application can be customised using a configuration file. The config file mu
8888
{
8989
"llm": {
9090
"disable_chat_history": false,
91-
"model": "llama3:8b-instruct-q4_0"
91+
"model": "llama3.1:8b-instruct-q4_0"
9292
},
9393
"stt": {
9494
"device": "torch device identifier (`cuda` if available; otherwise `cpu`",

june_va/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Settings(BaseSettings):
3232

3333

3434
default_config = {
35-
"llm": {"disable_chat_history": False, "model": "llama3:8b-instruct-q4_0"},
35+
"llm": {"disable_chat_history": False, "model": "llama3.1:8b-instruct-q4_0"},
3636
"stt": {
3737
"device": settings.TORCH_DEVICE,
3838
"generation_args": {"batch_size": 8},

0 commit comments

Comments
 (0)