Merge pull request #77 from OpenInterpreter/update-docs

pull/80/head
killian 10 months ago committed by GitHub
commit 38fad81b41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -24,10 +24,7 @@ To set up audio recording + playback on the ESP32 (M5 Atom), do the following:
### Server with a client ### Server with a client
```bash ```bash
# install dependencies # run 01 with no args
poetry install
# run start.py with no args
poetry run 01 poetry run 01
``` ```

@ -30,11 +30,11 @@ sudo apt-get install portaudio19-dev ffmpeg cmake
### Install and run the 01 CLI ### Install and run the 01 CLI
```bash ```bash
# Clone the repo, cd into the 01OS directory # Clone the repo and navigate into the 01OS directory
git clone https://github.com/OpenInterpreter/01.git git clone https://github.com/OpenInterpreter/01.git
cd 01OS cd 01OS
# Install dependencies and run start.py # Install dependencies and run 01
poetry install poetry install
poetry run 01 poetry run 01
``` ```

@ -3,6 +3,21 @@ title: "Speech To Text"
description: "Converts your voice into text" description: "Converts your voice into text"
--- ---
- Whisper (Local) To select your Speech-To-Text provider:
- Whisper (Hosted)
- Add more (placeholder, we will add instructions soon) ```bash
# Set STT service
01 --stt-service openai
```
## Whisper (Local)
Local, nice!
## Whisper (Hosted)
Still cool!
## Other Models
More instructions coming soon!

@ -3,6 +3,21 @@ title: "Text To Speech"
description: "Converts the text into audio" description: "Converts the text into audio"
--- ---
- Piper (Local) To select your Text-To-Speech provider:
- OpenAI (Hosted)
- Add more (placeholder, we will add instructions soon) ```bash
# Set TTS service
01 --tts-service openai
```
## Piper (Local)
Local, nice!
## OpenAI (Hosted)
Still cool!
## Other Models
More instructions coming soon!

Loading…
Cancel
Save