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.
38 lines
575 B
38 lines
575 B
10 months ago
|
---
|
||
|
title: 01OS Settings
|
||
|
description: "Settings when running 01OS"
|
||
|
---
|
||
|
|
||
|
### Server
|
||
|
|
||
|
Runs the server
|
||
|
|
||
|
```bash Terminal
|
||
|
01 --server
|
||
|
```
|
||
|
|
||
|
### Expose
|
||
|
|
||
|
Expose an 01 server publically
|
||
|
|
||
|
```bash Terminal
|
||
|
01 --server --expose # This will print a URL that a client can point to.
|
||
|
```
|
||
|
|
||
|
### Client
|
||
|
|
||
|
Runs a specific client
|
||
|
|
||
|
```bash Terminal
|
||
|
01 --client macos # Options: macos, rpi
|
||
|
```
|
||
|
|
||
|
### Local
|
||
|
|
||
|
The --local flag will install and run the whisper.cpp STT and Piper TTS models.
|
||
|
|
||
|
```bash Terminal
|
||
|
01 --local # Local client and server
|
||
|
01 --local --server --expose # Expose a local server
|
||
|
```
|