Skip to content

Commit d8cfba0

Browse files
committed
fix tests default model, docfixes [skip ci]
1 parent ac1b1b4 commit d8cfba0

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

docs/NODE_GUIDE.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ Running a Dria Compute Node is pretty straightforward! You can either follow the
88

99
Depending the AI models of your choice, you may have to install software:
1010

11-
- **OpenAI models**: you don't have to do anything!
12-
- **Ollama models**: you have to install Ollama
11+
- **OpenAI models**: you don't have to install anything, we just need an `OPENAI_API_KEY`!
12+
- **Ollama models**: you have to install Ollama, see [download instructions here](https://ollama.com/download). After installing, confirm you have it with:
1313

14-
```sh
15-
# prints Ollama version
16-
ollama -v
17-
```
14+
```sh
15+
ollama --version
16+
```
1817

1918
### Hardware
2019

src/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ impl Default for DriaComputeNodeConfig {
192192
"DKN_WALLET_SECRET_KEY",
193193
"6e6f64656e6f64656e6f64656e6f64656e6f64656e6f64656e6f64656e6f6465",
194194
);
195-
env::set_var("DKN_MODELS", "phi3:3.8b");
195+
env::set_var("DKN_MODELS", "gpt-3.5-turbo");
196196

197197
Self::new()
198198
}

0 commit comments

Comments
 (0)