File tree Expand file tree Collapse file tree 3 files changed +20
-55
lines changed Expand file tree Collapse file tree 3 files changed +20
-55
lines changed 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
-
21
1
- name : get_top_headlines
22
2
description : Get top news headlines by country and/or category
23
3
parameter_schema :
329
309
name : Alice
330
310
output : A list of nodes with the property name set to 'Alice'
331
311
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
355
312
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"
24
24
yfinance = " ^0.2.38"
25
25
openai-multi-tool-use-parallel-patch = " ^0.2.0"
26
26
ollama = " ^0.2.1"
27
- bs4 = " ^0.0.2"
28
27
29
28
[tool .poetry .dev-dependencies ]
30
29
pytest = " ^8.1.1"
Original file line number Diff line number Diff line change 111
111
description : Artifact data, usually the file contents.
112
112
required :
113
113
- 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