Skip to content

Commit a56efb6

Browse files
committed
updated CLI from lca to llm-change
1 parent 07e8601 commit a56efb6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The CLI provides several commands to interact with the language models.
2121
### List Available Models
2222
To list all available models from supported providers:
2323
```bash
24-
lca list-models
24+
llm-change list-models
2525

2626
OpenAI models:
2727
gpt-4o-2024-08-06
@@ -49,18 +49,18 @@ LBL-CBORG models:
4949
### Generate Text
5050
To generate text using a specified model and provider:
5151
```bash
52-
lca execute --model <MODEL_NAME> --provider <PROVIDER_NAME> --prompt "<YOUR_PROMPT>"
52+
llm-change execute --model <MODEL_NAME> --provider <PROVIDER_NAME> --prompt "<YOUR_PROMPT>"
5353
```
5454
Replace `<MODEL_NAME>`, `<PROVIDER_NAME>`, and `<YOUR_PROMPT>` with your desired values.
5555

5656
### Examples
5757
- Generate text using CBORG's `lbl/llama-3` model with a custom prompt:
5858
```bash
59-
lca execute --model lbl/llama-3 --prompt "I want to change the definition of class ABC:123 to 'foo bar' and also create a new class labelled 'bar foo' with the curie DEF:123."
59+
llm-change execute --model lbl/llama-3 --prompt "I want to change the definition of class ABC:123 to 'foo bar' and also create a new class labelled 'bar foo' with the curie DEF:123."
6060
```
6161
OR
6262
```bash
63-
lca execute --provider cborg --prompt "I want to change the definition of class ABC:123 to 'foo bar' and also create a new class labelled 'bar foo' with the curie DEF:123."
63+
llm-change execute --provider cborg --prompt "I want to change the definition of class ABC:123 to 'foo bar' and also create a new class labelled 'bar foo' with the curie DEF:123."
6464
```
6565

6666
generates

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ sphinx-click = {version = ">=4.3.0"}
3434
myst-parser = {version = ">=0.18.1"}
3535

3636
[tool.poetry.scripts]
37-
lca = "llm_change_agent.cli:main"
37+
llm-change = "llm_change_agent.cli:main"
3838

3939
[tool.poetry-dynamic-versioning]
4040
enable = true

0 commit comments

Comments
 (0)