From 239fe35cab8b0515c1a14360d9efbb69f9aabf37 Mon Sep 17 00:00:00 2001 From: Mike Bird Date: Wed, 13 Mar 2024 16:39:14 -0400 Subject: [PATCH 1/2] sst skeleton --- docs/client/setup.mdx | 5 +---- docs/getting-started/introduction.mdx | 4 ++-- docs/services/speech-to-text.mdx | 21 ++++++++++++++++++--- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/docs/client/setup.mdx b/docs/client/setup.mdx index 526fc3c..ea2d7b6 100644 --- a/docs/client/setup.mdx +++ b/docs/client/setup.mdx @@ -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 ``` diff --git a/docs/getting-started/introduction.mdx b/docs/getting-started/introduction.mdx index 24b6e04..f086b52 100644 --- a/docs/getting-started/introduction.mdx +++ b/docs/getting-started/introduction.mdx @@ -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 ``` diff --git a/docs/services/speech-to-text.mdx b/docs/services/speech-to-text.mdx index 2b24828..a7ece79 100644 --- a/docs/services/speech-to-text.mdx +++ b/docs/services/speech-to-text.mdx @@ -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! From 9e7b1abf475b1702f3ab6fee5182d2247a97a11e Mon Sep 17 00:00:00 2001 From: Mike Bird Date: Wed, 13 Mar 2024 16:41:09 -0400 Subject: [PATCH 2/2] tts skeleton --- docs/services/text-to-speech.mdx | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/docs/services/text-to-speech.mdx b/docs/services/text-to-speech.mdx index 9558c19..3babbe2 100644 --- a/docs/services/text-to-speech.mdx +++ b/docs/services/text-to-speech.mdx @@ -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!