Skip to content

Commit

Permalink
fix tests default model, docfixes [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
erhant committed Sep 6, 2024
1 parent ac1b1b4 commit d8cfba0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions docs/NODE_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@ Running a Dria Compute Node is pretty straightforward! You can either follow the

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

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

```sh
# prints Ollama version
ollama -v
```
```sh
ollama --version
```

### Hardware

Expand Down
2 changes: 1 addition & 1 deletion src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ impl Default for DriaComputeNodeConfig {
"DKN_WALLET_SECRET_KEY",
"6e6f64656e6f64656e6f64656e6f64656e6f64656e6f64656e6f64656e6f6465",
);
env::set_var("DKN_MODELS", "phi3:3.8b");
env::set_var("DKN_MODELS", "gpt-3.5-turbo");

Self::new()
}
Expand Down

0 comments on commit d8cfba0

Please sign in to comment.