change configure to only reference profiles
This commit is contained in:
parent
89b91d2365
commit
1ae939db92
|
@ -4,32 +4,18 @@ description: "Configure your 01 instance"
|
||||||
---
|
---
|
||||||
|
|
||||||
A core part of the 01 server is the interpreter which is an instance of Open Interpreter.
|
A core part of the 01 server is the interpreter which is an instance of Open Interpreter.
|
||||||
Open Interpreter is highly configurable and only requires updating a single file.
|
Open Interpreter is highly configurable and only requires updating a profile.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Edit i.py
|
# View profiles
|
||||||
software/source/server/i.py
|
poetry run 01 --profiles
|
||||||
```
|
```
|
||||||
|
|
||||||
Properties such as `model`, `context_window`, and many more can be updated here.
|
Properties such as `model`, `context_window`, and many more can be updated here.
|
||||||
|
|
||||||
### LLM service provider
|
To assign a profile to your 01 instance, use the `--profile` flag:
|
||||||
|
|
||||||
If you wish to use a local model, you can use the `--llm-service` flag:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# use llamafile
|
# Use profile
|
||||||
poetry run 01 --server --llm-service llamafile
|
poetry run 01 --profile <profile_name>
|
||||||
```
|
```
|
||||||
|
|
||||||
For more information about LLM service providers, check out the page on <a href="/services/language-model">Language Models</a>.
|
|
||||||
|
|
||||||
### Voice Interface
|
|
||||||
|
|
||||||
Both speech-to-text and text-to-speech can be configured in 01OS.
|
|
||||||
|
|
||||||
You are able to pass CLI flags `--tts-service` and/or `--stt-service` with the desired service provider to swap out different services
|
|
||||||
|
|
||||||
These different service providers can be found in `/services/stt` and `/services/tts`
|
|
||||||
|
|
||||||
For more information, please read about <a href="/services/speech-to-text">speech-to-text</a> and <a href="/services/text-to-speech">text-to-speech</a>
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: "Installation"
|
title: "Install"
|
||||||
description: "Get your 01 up and running"
|
description: "Get your 01 up and running"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue