sst skeleton
This commit is contained in:
parent
84039d271a
commit
239fe35cab
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
|
|
@ -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!
|
||||
|
|
Loading…
Reference in New Issue