Skip to content

Commit 1d7f22d

Browse files
committed
chore: remove older references.
1 parent b858e95 commit 1d7f22d

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Please update the `models` section in the config yml to your local model path.
6060
`arey chat`
6161

6262
### 3. Run Arey in play mode
63+
6364
Use to fine-tune a prompt in your editor while `arey` keeps completing your prompt on every save.
6465

6566
```sh
@@ -84,7 +85,7 @@ Watching `/tmp/arey_playzl9igj3d.md` for changes...
8485
## Development
8586
8687
```sh
87-
# Install myl locally in editable mode.
88+
# Install arey locally in editable mode.
8889
> pip install -e .
8990
> pip install -e .\[test\] # optional, if you wish to run tests
9091

docs/design.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ We will build upon following concepts.
5757
- Models can support one or both of these modes.
5858
- TODO: more clarification on where and how to use modes.
5959
- **Tasks** are the primary interaction model for this app.
60-
- E.g., `myl <task>` will perform the task.
60+
- E.g., `arey <task>` will perform the task.
6161
- Task is the highest level of abstraction this library will provide.
6262
- Task will own and manage a prompt. E.g., it will understand the prompt
6363
parameters and will fill those at runtime.
@@ -100,7 +100,7 @@ Let's enumerate few example scenarios to validate the mental model.
100100
- Output: a summary of the provided text.
101101
- Task can support various tweaks like summarize in bullets, or a paragraph.
102102
Optionally, extract keywords etc.
103-
- E.g., `myl summarize --keywords <text blob>` or `cat essay.md | myl summarize`
103+
- E.g., `arey summarize --keywords <text blob>` or `cat essay.md | arey summarize`
104104
- Implementation
105105
- Prompt can use zero shot or few shot mechanism.
106106
- Prompt response can be JSON. We can dynamically provide instruction to

docs/samples/classify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# An example of a prompt to override the model template with custom contexts.
22
# How to use:
3-
# myl task "Classify the text into one of the categories in JSON format: {\"category\": [\"Technology\", \"Life\", \"Philosophy\"]}. Here's the text:" <path to this file>
3+
# arey task "Classify the text into one of the categories in JSON format: {\"category\": [\"Technology\", \"Life\", \"Philosophy\"]}. Here's the text:" <path to this file>
44

55
name: summarize
66
version: 1

docs/samples/classify_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import frontmatter
1010
from rich.console import Console
1111

12-
from myl.task import Task, create_task, run
12+
from arey.task import Task, create_task, run
1313

1414
console = Console()
1515

docs/samples/summarize.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# An example of a prompt to override the model template with custom contexts.
22
# How to use:
3-
# myl task "Summarize below text in JSON format: {\"summary\": \"\", \"keywords\": []}. Here's the text: <text>" <path to this file>
3+
# arey task "Summarize below text in JSON format: {\"summary\": \"\", \"keywords\": []}. Here's the text: <text>" <path to this file>
44

55
name: summarize
66
version: 1

docs/samples/summarize_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from markdown_it import MarkdownIt
1212
from rich.console import Console
1313

14-
from myl.task import Task, create_task, run
14+
from arey.task import Task, create_task, run
1515

1616
console = Console()
1717

0 commit comments

Comments
 (0)