-
Notifications
You must be signed in to change notification settings - Fork 537
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from OpenInterpreter/docs
new docs structure
- Loading branch information
Showing
19 changed files
with
109 additions
and
337 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "01 Heavy" | ||
description: "Build your 01 Heavy" | ||
--- | ||
|
||
runs fully locally + coming soon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "01 Light" | ||
description: "Build your 01 Light" | ||
--- | ||
|
||
01 Light (one pager that points to the STL, wiring diagrams, and points to the ESP32 client setup page^) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: "Setup" | ||
description: "Get your 01 client up and running" | ||
--- | ||
|
||
(lets you pick from a grid of avaliable clients) | ||
|
||
- ESP32 (instructions for flashing it) | ||
- Desktop (basically says "just run start.py with no args, that will run the server with a client, or start.py --client to just run the client") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
title: Introduction | ||
description: "The open-source language model computer." | ||
--- | ||
|
||
<img | ||
src="https://openinterpreter.com/assets/banner.jpg" | ||
alt="thumbnail" | ||
style={{ transform: "translateY(-1.25rem)" }} | ||
/> | ||
|
||
The 01 project is an open-source ecosystem for artificially intelligent devices. | ||
|
||
By combining code-interpreting language models ("interpreters") with speech recognition and voice synthesis, the 01’s flagship operating system ("01OS") can power conversational, computer-operating AI devices similar to the Rabbit R1 or the Humane Pin. | ||
|
||
We intend to become the “Linux” of this new space— open, modular, and free for personal or commercial use. | ||
|
||
## Quick Start | ||
|
||
```bash | ||
# Clone the repo, cd into the 01OS directory | ||
git clone https://github.com/OpenInterpreter/01.git | ||
cd 01OS | ||
|
||
# Install dependencies and run start.py | ||
poetry install | ||
poetry run 01 | ||
``` | ||
|
||
_Disclaimer:_ The current version of 01OS is a developer preview. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "Setup" | ||
description: "Get your 01 up and running" | ||
--- | ||
|
||
Setup (breaks down the basic steps of the following and links to the pages for more info) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: "Setup" | ||
description: "Get your 01 server up and running" | ||
--- | ||
|
||
Setup (just run start.py --server , explain the flags (revealed via start.py --help)) | ||
|
||
- Interpreter | ||
- Open Interpreter (explains i.py, how you configure your interpreter, cover the basic settings of OI (that file is literally just modifying an interpreter from OI) | ||
- Language Model (LLM setup via interpreter.model in i.py or from the command line via start.py --server --llm-service llamafile) | ||
- Voice Interface (explains that you can run --tts-service and --stt-service to swap out for different services, which are in /Services/Speech-to-text and /Services/Text-to-text) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: "Language Model" | ||
description: "The LLM that powers your 01" | ||
--- | ||
|
||
- Llamafile (Local) | ||
- Llamaedge (Local) | ||
- Hosted Models (explains that we use litellm, you can pass in many different model flags to this) | ||
- Add more (placeholder, we will add instructions soon) |
Oops, something went wrong.