You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
01/01OS/README.md

34 lines
750 B

11 months ago
The open-source language model computer.
11 months ago
11 months ago
```bash
pip install 01OS
11 months ago
```
12 months ago
11 months ago
```bash
01 # This will run a server + attempt to determine and run a client.
# (Behavior can be modified by changing the contents of `.env`)
```
12 months ago
11 months ago
**Expose an 01 server publically:**
12 months ago
11 months ago
```bash
01 --server --expose # This will print a URL that a client can point to.
```
12 months ago
11 months ago
**Run a specific client:**
12 months ago
11 months ago
```bash
01 --client macos # Options: macos, rpi
```
12 months ago
11 months ago
**Run locally:**
12 months ago
11 months ago
The current default uses OpenAI's services.
12 months ago
11 months ago
The `--local` flag will install and run the [whisper.cpp](https://github.com/ggerganov/whisper.cpp) STT and [Piper](https://github.com/rhasspy/piper) TTS models.
12 months ago
11 months ago
```bash
01 --local # Local client and server
01 --local --server --expose # Expose a local server
```