File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- - name : send_email
2- description : Help drafting email and send the email
3- parameter_schema :
4- type : object
5- properties :
6- email :
7- type : string
8- description : receipient email address
9- subject :
10- type : string
11- description : Email subject
12- content :
13- type : string
14- description : Email content with html formatted
15-
16- required :
17- - email
18- - subject
19- - content
20-
211- name : get_top_headlines
222 description : Get top news headlines by country and/or category
233 parameter_schema :
329309 name : Alice
330310 output : A list of nodes with the property name set to 'Alice'
331311
332- - name : artifact_register
333- description : >
334- Store a newly created artifact in the project context.
335- parameter_schema :
336- type : object
337- properties :
338- data :
339- type : string
340- description : Artifact data, usually the file contents.
341- required :
342- - data
343-
344- - name : artifact_get
345- description : >
346- Store a newly created artifact in the project context.
347- parameter_schema :
348- type : object
349- properties :
350- data :
351- type : string
352- description : Artifact data, usually the file contents.
353- required :
354- - data
355312
356- - name : artifact_update
357- description : >
358- Store a newly created artifact in the project context.
359- parameter_schema :
360- type : object
361- properties :
362- data :
363- type : string
364- description : Artifact data, usually the file contents.
365- required :
366- - data
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ groq = "^0.9.0"
2424yfinance = " ^0.2.38"
2525openai-multi-tool-use-parallel-patch = " ^0.2.0"
2626ollama = " ^0.2.1"
27- bs4 = " ^0.0.2"
2827
2928[tool .poetry .dev-dependencies ]
3029pytest = " ^8.1.1"
Original file line number Diff line number Diff line change 111111 description : Artifact data, usually the file contents.
112112 required :
113113 - data
114+
115+ - name : send_email
116+ description : Help drafting email and send the email
117+ parameter_schema :
118+ type : object
119+ properties :
120+ email :
121+ type : string
122+ description : receipient email address
123+ subject :
124+ type : string
125+ description : Email subject
126+ content :
127+ type : string
128+ description : Email content with html formatted
129+
130+ required :
131+ - email
132+ - subject
133+ - content
You can’t perform that action at this time.
0 commit comments