mirror of
https://github.com/katanemo/plano.git
synced 2026-04-28 10:26:36 +02:00
archgw cli (#117)
* initial commit of the insurange agent demo, with the CLI tool * committing the cli * fixed some field descriptions for generate-prompt-targets * CLI works with buil, up and down commands. Function calling example works stand-alone * fixed README to install archgw cli * fixing based on feedback * fixing based on feedback --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-261.local>
This commit is contained in:
parent
af018e5fd8
commit
dc57f119a0
30 changed files with 1087 additions and 203 deletions
28
arch/tools/README.md
Normal file
28
arch/tools/README.md
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
## Setup Instructions: archgw CLI
|
||||
|
||||
This guide will walk you through the steps to set up the archgw cli on your local machine
|
||||
|
||||
### Step 1: Create a Python virtual environment
|
||||
|
||||
In the tools directory, create a Python virtual environment by running:
|
||||
|
||||
```bash
|
||||
python -m venv venv
|
||||
```
|
||||
|
||||
### Step 2: Activate the virtual environment
|
||||
* On Linux/MacOS:
|
||||
|
||||
```bash
|
||||
source venv/bin/activate
|
||||
```
|
||||
|
||||
### Step 3: Run the build script
|
||||
```bash
|
||||
sh build-cli.sh
|
||||
```
|
||||
|
||||
## Uninstall Instructions: archgw CLI
|
||||
```bash
|
||||
pip uninstall archgw
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue