-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
misc: small fix or general refactoring i did not bother commenting
- Loading branch information
1 parent
bb50093
commit a28c9d3
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using: | ||
- '*' # all default namespaces | ||
|
||
# agent background story | ||
system_prompt: > | ||
You are an useful assistant that reads news from the web and reports a summary to the user. | ||
# agent specific goal | ||
prompt: > | ||
Read the recent news first and report a five list bullet points from it. | ||
guidance: | ||
- You will first read the recent news and then report a summary. | ||
|
||
functions: | ||
- name: News | ||
decription: You will use this action to read the recent news. | ||
actions: | ||
- name: read_news | ||
description: "To read the recent news:" | ||
max_shown_output: 4096 | ||
tool: curl -s getnews.tech/ai | ||
|
||
|
||
|