Skip to content

Commit e8170f7

Browse files
authored
rename to planoai (#650)
1 parent e7ce00b commit e8170f7

File tree

18 files changed

+44
-44
lines changed

18 files changed

+44
-44
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Plano's CLI allows you to manage and interact with the Plano gateway efficiently
6363
```console
6464
$ python3.12 -m venv venv
6565
$ source venv/bin/activate # On Windows, use: venv\Scripts\activate
66-
$ pip install plano==0.4.0
66+
$ pip install planoai==0.4.0
6767
```
6868

6969
### Use Plano as a LLM Router
@@ -160,7 +160,7 @@ tracing:
160160
Run your `flight_agent` and `hotel_agent` services (see the [Orchestration guide](https://docs.planoai.dev/guides/orchestration.html) for a full Travel Booking example), then start Plano with the config above:
161161

162162
```console
163-
$ plano up plano_config.yaml
163+
$ planoai up plano_config.yaml
164164
```
165165

166166
Plano will start the orchestrator and expose an agent listener on port `8001`.
@@ -232,7 +232,7 @@ endpoints:
232232
##### Step 2. Start Plano with currency conversion config
233233

234234
```sh
235-
$ plano up plano_config.yaml
235+
$ planoai up plano_config.yaml
236236
2024-12-05 16:56:27,979 - cli.main - INFO - Starting plano cli version: 0.4.0
237237
2024-12-05 16:56:28,485 - cli.utils - INFO - Schema validation successful!
238238
2024-12-05 16:56:28,485 - cli.main - INFO - Starting plano model server and plano gateway

arch/tools/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ source venv/bin/activate
1919

2020
### Step 3: Run the build script
2121
```bash
22-
pip install plano==0.4.0
22+
pip install planoai==0.4.0
2323
```
2424

2525
## Uninstall Instructions: plano CLI
2626
```bash
27-
pip uninstall plano
27+
pip uninstall planoai
2828
```
2929

3030
## Setup Instructions (Dev): plano CLI
@@ -53,16 +53,16 @@ poetry install
5353

5454
### Step 4: build Arch
5555
```bash
56-
plano build
56+
planoai build
5757
```
5858

5959
### Logs
6060
`plano` command can also view logs from the gateway. Use following command to view logs,
6161

6262
```bash
63-
plano logs --follow
63+
planoai logs --follow
6464
```
6565

6666
## Uninstall Instructions: plano CLI
6767
```bash
68-
pip uninstall plano
68+
pip uninstall planoai

arch/tools/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.poetry]
2-
name = "plano"
2+
name = "planoai"
33
version = "0.4.0"
44
description = "Python-based CLI tool to manage Plano."
55
authors = ["Katanemo Labs, Inc."]
@@ -18,7 +18,7 @@ requests = ">=2.31.0,<3.0.0"
1818
pytest = ">=8.4.1,<9.0.0"
1919

2020
[tool.poetry.scripts]
21-
plano = "cli.main:main"
21+
planoai = "cli.main:main"
2222

2323
[build-system]
2424
requires = ["poetry-core>=2.0.0"]

demos/samples_java/weather_forcecast_service/run_demo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ start_demo() {
2020

2121
# Step 3: Start Arch
2222
echo "Starting Arch with config.yaml..."
23-
plano up config.yaml
23+
planoai up config.yaml
2424

2525
# Step 4: Start developer services
2626
echo "Starting Network Agent using Docker Compose..."
@@ -35,7 +35,7 @@ stop_demo() {
3535

3636
# Step 2: Stop Arch
3737
echo "Stopping Arch..."
38-
plano down
38+
planoai down
3939
}
4040

4141
# Main script logic

demos/samples_python/currency_exchange/run_demo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ start_demo() {
2020

2121
# Step 3: Start Arch
2222
echo "Starting Arch with config.yaml..."
23-
plano up config.yaml
23+
planoai up config.yaml
2424

2525
# Step 4: Start developer services
2626
echo "Starting Network Agent using Docker Compose..."
@@ -35,7 +35,7 @@ stop_demo() {
3535

3636
# Step 2: Stop Arch
3737
echo "Stopping Arch..."
38-
plano down
38+
planoai down
3939
}
4040

4141
# Main script logic

demos/samples_python/multi_turn_rag_agent/run_demo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ start_demo() {
2020

2121
# Step 3: Start Arch
2222
echo "Starting Arch with config.yaml..."
23-
plano up config.yaml
23+
planoai up config.yaml
2424

2525
# Step 4: Start Network Agent
2626
echo "Starting HR Agent using Docker Compose..."
@@ -35,7 +35,7 @@ stop_demo() {
3535

3636
# Step 2: Stop Arch
3737
echo "Stopping Arch..."
38-
plano down
38+
planoai down
3939
}
4040

4141
# Main script logic

demos/samples_python/stock_quote/run_demo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ start_demo() {
2020

2121
# Step 3: Start Arch
2222
echo "Starting Arch with config.yaml..."
23-
plano up config.yaml
23+
planoai up config.yaml
2424

2525
# Step 4: Start developer services
2626
echo "Starting Network Agent using Docker Compose..."
@@ -35,7 +35,7 @@ stop_demo() {
3535

3636
# Step 2: Stop Arch
3737
echo "Stopping Arch..."
38-
plano down
38+
planoai down
3939
}
4040

4141
# Main script logic

demos/samples_python/weather_forecast/run_demo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ start_demo() {
7474

7575
# Step 4: Start Arch
7676
echo "Starting Arch with config.yaml..."
77-
plano up config.yaml
77+
planoai up config.yaml
7878

7979
# Step 5: Start Network Agent with the chosen Docker Compose file
8080
echo "Starting Network Agent with $COMPOSE_FILE..."
@@ -93,7 +93,7 @@ stop_demo() {
9393

9494
# Stop Arch
9595
echo "Stopping Arch..."
96-
plano down
96+
planoai down
9797
}
9898

9999
# Main script logic

demos/shared/test_runner/run_demo_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ do
2121
echo "****************************************"
2222
cd ../../$demo
2323
echo "starting plano"
24-
plano up config.yaml
24+
planoai up config.yaml
2525
echo "starting docker containers"
2626
# only execute docker compose if demo is use_cases/preference_based_routing
2727
if [ "$demo" == "use_cases/preference_based_routing" ]; then
@@ -38,7 +38,7 @@ do
3838
exit 1
3939
fi
4040
echo "stopping docker containers and plano"
41-
plano down
41+
planoai down
4242
docker compose down -v
4343
cd ../../shared/test_runner
4444
done

demos/use_cases/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Once the config file is created ensure that you have env vars setup for `MISTRAL
2828
Start arch gateway,
2929

3030
```
31-
$ plano up config.yaml
31+
$ planoai up config.yaml
3232
2024-12-05 11:24:51,288 - cli.main - INFO - Starting plano cli version: 0.4.0
3333
2024-12-05 11:24:51,825 - cli.utils - INFO - Schema validation successful!
3434
2024-12-05 11:24:51,825 - cli.main - INFO - Starting arch model server and arch gateway

0 commit comments

Comments
 (0)