You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
10 months ago
|
---
|
||
6 months ago
|
title: "Configure"
|
||
|
description: "Configure your 01 instance"
|
||
10 months ago
|
---
|
||
|
|
||
10 months ago
|
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.
|
||
|
|
||
|
```bash
|
||
|
# Edit i.py
|
||
10 months ago
|
software/source/server/i.py
|
||
10 months ago
|
```
|
||
|
|
||
|
Properties such as `model`, `context_window`, and many more can be updated here.
|
||
|
|
||
|
### LLM service provider
|
||
|
|
||
|
If you wish to use a local model, you can use the `--llm-service` flag:
|
||
|
|
||
|
```bash
|
||
|
# use llamafile
|
||
|
poetry run 01 --server --llm-service llamafile
|
||
|
```
|
||
|
|
||
|
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>
|