feat: add Teach Mode args
This commit is contained in:
parent
566dc4df94
commit
6f540fc07c
|
@ -36,6 +36,12 @@ if [[ "$@" == *"--server"* ]]; then
|
||||||
export SERVER_START="True"
|
export SERVER_START="True"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check if "--teach" is passed as an argument
|
||||||
|
if [[ "$@" == *"--teach"* ]]; then
|
||||||
|
# If "--teach" is passed, set TEACH_MODE to True
|
||||||
|
export TEACH_MODE="True"
|
||||||
|
fi
|
||||||
|
|
||||||
# Check if "--client" is passed as an argument
|
# Check if "--client" is passed as an argument
|
||||||
if [[ "$@" == *"--client"* ]]; then
|
if [[ "$@" == *"--client"* ]]; then
|
||||||
# If "--client" is passed, set CLIENT_START to True
|
# If "--client" is passed, set CLIENT_START to True
|
||||||
|
|
|
@ -58,6 +58,10 @@ The `--local` flag will install and run the [whisper.cpp](https://github.com/gge
|
||||||
01 --local --server --expose # Expose a local server
|
01 --local --server --expose # Expose a local server
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Teach Mode (experimental)**
|
||||||
|
|
||||||
|
Running `01 --teach` runs 01 in teach mode, where you can add your own skills for Open Interpreter to use, through an easy-to-follow GUI.
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
## Setup for development:
|
## Setup for development:
|
||||||
|
|
Loading…
Reference in New Issue