Skip to content

Commit f6c5217

Browse files
committed
chore: minor changes
1 parent 7171339 commit f6c5217

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ $ npm install -g @offline-ai/cli
211211
$ ai COMMAND
212212
running command...
213213
$ ai (--version)
214-
@offline-ai/cli/0.9.6 linux-x64 node-v20.18.0
214+
@offline-ai/cli/0.9.7 linux-x64 node-v20.18.0
215215
$ ai --help [COMMAND]
216216
USAGE
217217
$ ai COMMAND
@@ -441,7 +441,7 @@ EXAMPLES
441441
$ ai agent publish <agent-name>
442442
```
443443

444-
_See code: [src/commands/agent/index.ts](https://github.com/offline-ai/cli/blob/v0.9.6/src/commands/agent/index.ts)_
444+
_See code: [src/commands/agent/index.ts](https://github.com/offline-ai/cli/blob/v0.9.7/src/commands/agent/index.ts)_
445445

446446
## `ai autocomplete [SHELL]`
447447

Diff for: examples/workflow/deterministic/deterministic.ai.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ description: |-
1010
5. If the outline is good quality and a scifi story, we feed the outline into the third agent
1111
6. The third agent writes the story
1212
input:
13-
- content: {index: 0}
13+
- content:
14+
index: 0
1415
---
1516
- -> story_outline(content) -> $set('outline') -> outline_checker(content)
1617
- $if: "!LatestResult.good_quality"

Diff for: examples/workflow/deterministic/outline_checker.ai.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
---
22
input:
3-
content: {required: true, index: 0}
3+
content:
4+
required: true
5+
index: 0
46
output:
57
type: object
68
properties:
7-
good_quality: {type: boolean}
8-
is_scifi: {type: boolean}
9+
good_quality:
10+
type: boolean
11+
is_scifi:
12+
type: boolean
913
parameters:
1014
# shouldThink: last
1115
response_format:

Diff for: examples/workflow/deterministic/story_agent.ai.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
input:
3-
content: {required: true, index: 0}
3+
content:
4+
required: true
5+
index: 0
46
parameters:
57
temperature: 0.8
68
---

Diff for: examples/workflow/deterministic/story_outline.ai.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
input:
3-
content: {required: true, index: 0}
3+
content:
4+
required: true
5+
index: 0
46
parameters:
57
temperature: 0.8
68
---

0 commit comments

Comments
 (0)