fix(notes): improving note taking capabilities
This commit is contained in:
@ -20,6 +20,8 @@ An image can have more than one note.
|
|||||||
|
|
||||||
You must return markdown, and adapt the text to best fit markdown.
|
You must return markdown, and adapt the text to best fit markdown.
|
||||||
Do not return anything except markdown.
|
Do not return anything except markdown.
|
||||||
|
|
||||||
|
If the image contains code, add this inside code blocks. You must try and correctly guess the language too.
|
||||||
`
|
`
|
||||||
|
|
||||||
type NoteAgent struct {
|
type NoteAgent struct {
|
||||||
|
@ -23,19 +23,18 @@ The agents are available as tool calls.
|
|||||||
Agents available:
|
Agents available:
|
||||||
|
|
||||||
eventLocationAgent
|
eventLocationAgent
|
||||||
|
|
||||||
Use it when you think the image contains an event or a location of any sort. This can be an event page, a map, an address or a date.
|
Use it when you think the image contains an event or a location of any sort. This can be an event page, a map, an address or a date.
|
||||||
|
|
||||||
noteAgent
|
noteAgent
|
||||||
|
|
||||||
Use it when there is text on the screen. Any text, always use this. Use me!
|
Use it when there is text on the screen. Any text, always use this. Use me!
|
||||||
|
You should call this whenever an image has text.
|
||||||
|
CALL ME EVERY SINGLE TIME THERE IS TEXT
|
||||||
|
|
||||||
contactAgent
|
contactAgent
|
||||||
|
|
||||||
Use it when the image contains information relating a person.
|
Use it when the image contains information relating a person.
|
||||||
|
|
||||||
defaultAgent
|
defaultAgent
|
||||||
|
|
||||||
When none of the above apply.
|
When none of the above apply.
|
||||||
|
|
||||||
Always call agents in parallel if you need to call more than 1.
|
Always call agents in parallel if you need to call more than 1.
|
||||||
|
Reference in New Issue
Block a user