mirror of
https://github.com/nod-ai/AMD-SHARK-Studio.git
synced 2026-04-03 03:00:17 -04:00
The prompt examples will now be loaded from a json file `prompts.json`. Signed-Off-by: Gaurav Shukla
17 lines
276 B
Markdown
17 lines
276 B
Markdown
In order to launch SHARK-web, from the root SHARK directory, run:
|
|
|
|
## Linux
|
|
```shell
|
|
IMPORTER=1 ./setup_venv.sh
|
|
source shark.venv/bin/activate
|
|
cd web
|
|
python index.py
|
|
```
|
|
|
|
## Windows
|
|
```shell
|
|
./setup_venv.ps1
|
|
cd web
|
|
python index.py --local_tank_cache=<current_working_dir>
|
|
```
|