Skip to content

Commit

Permalink
Merge pull request OpenInterpreter#77 from OpenInterpreter/update-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianLucas committed Mar 15, 2024
2 parents 3d225fb + 9e7b1ab commit 38fad81
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 12 deletions.
5 changes: 1 addition & 4 deletions docs/client/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ To set up audio recording + playback on the ESP32 (M5 Atom), do the following:
### Server with a client

```bash
# install dependencies
poetry install

# run start.py with no args
# run 01 with no args
poetry run 01
```

Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ sudo apt-get install portaudio19-dev ffmpeg cmake
### Install and run the 01 CLI

```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
cd 01OS

# Install dependencies and run start.py
# Install dependencies and run 01
poetry install
poetry run 01
```
Expand Down
21 changes: 18 additions & 3 deletions docs/services/speech-to-text.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ title: "Speech To Text"
description: "Converts your voice into text"
---

- Whisper (Local)
- Whisper (Hosted)
- Add more (placeholder, we will add instructions soon)
To select your Speech-To-Text provider:

```bash
# Set STT service
01 --stt-service openai
```

## Whisper (Local)

Local, nice!

## Whisper (Hosted)

Still cool!

## Other Models

More instructions coming soon!
21 changes: 18 additions & 3 deletions docs/services/text-to-speech.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ title: "Text To Speech"
description: "Converts the text into audio"
---

- Piper (Local)
- OpenAI (Hosted)
- Add more (placeholder, we will add instructions soon)
To select your Text-To-Speech provider:

```bash
# Set TTS service
01 --tts-service openai
```

## Piper (Local)

Local, nice!

## OpenAI (Hosted)

Still cool!

## Other Models

More instructions coming soon!

0 comments on commit 38fad81

Please sign in to comment.