From 1ae939db9217f98ccd0d8061cf7ab26a7e7473e3 Mon Sep 17 00:00:00 2001 From: Mike Bird Date: Wed, 10 Jul 2024 10:43:26 -0400 Subject: [PATCH] change configure to only reference profiles --- docs/software/configure.mdx | 26 ++++++-------------------- docs/software/installation.mdx | 2 +- 2 files changed, 7 insertions(+), 21 deletions(-) diff --git a/docs/software/configure.mdx b/docs/software/configure.mdx index a1f81dc..9482115 100644 --- a/docs/software/configure.mdx +++ b/docs/software/configure.mdx @@ -4,32 +4,18 @@ description: "Configure your 01 instance" --- A core part of the 01 server is the interpreter which is an instance of Open Interpreter. -Open Interpreter is highly configurable and only requires updating a single file. +Open Interpreter is highly configurable and only requires updating a profile. ```bash -# Edit i.py -software/source/server/i.py +# View profiles +poetry run 01 --profiles ``` Properties such as `model`, `context_window`, and many more can be updated here. -### LLM service provider - -If you wish to use a local model, you can use the `--llm-service` flag: +To assign a profile to your 01 instance, use the `--profile` flag: ```bash -# use llamafile -poetry run 01 --server --llm-service llamafile +# Use profile +poetry run 01 --profile ``` - -For more information about LLM service providers, check out the page on Language Models. - -### Voice Interface - -Both speech-to-text and text-to-speech can be configured in 01OS. - -You are able to pass CLI flags `--tts-service` and/or `--stt-service` with the desired service provider to swap out different services - -These different service providers can be found in `/services/stt` and `/services/tts` - -For more information, please read about speech-to-text and text-to-speech diff --git a/docs/software/installation.mdx b/docs/software/installation.mdx index 9cbbc93..9fa80ad 100644 --- a/docs/software/installation.mdx +++ b/docs/software/installation.mdx @@ -1,5 +1,5 @@ --- -title: "Installation" +title: "Install" description: "Get your 01 up and running" ---