Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs #77

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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!
Loading