hume 0.13.5 → 0.13.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/.mock/definition/api.yml +12 -0
  2. package/.mock/definition/empathic-voice/__package__.yml +2976 -0
  3. package/.mock/definition/empathic-voice/chat.yml +175 -0
  4. package/.mock/definition/empathic-voice/chatGroups.yml +627 -0
  5. package/.mock/definition/empathic-voice/chatWebhooks.yml +30 -0
  6. package/.mock/definition/empathic-voice/chats.yml +506 -0
  7. package/.mock/definition/empathic-voice/configs.yml +842 -0
  8. package/.mock/definition/empathic-voice/prompts.yml +558 -0
  9. package/.mock/definition/empathic-voice/tools.yml +626 -0
  10. package/.mock/definition/expression-measurement/__package__.yml +1 -0
  11. package/.mock/definition/expression-measurement/batch/__package__.yml +1803 -0
  12. package/.mock/definition/expression-measurement/stream/__package__.yml +113 -0
  13. package/.mock/definition/expression-measurement/stream/stream.yml +438 -0
  14. package/.mock/definition/tts/__package__.yml +713 -0
  15. package/.mock/definition/tts/streamInput.yml +84 -0
  16. package/.mock/definition/tts/voices.yml +143 -0
  17. package/.mock/fern.config.json +4 -0
  18. package/Client.js +10 -3
  19. package/api/resources/empathicVoice/types/ReturnConfig.d.ts +2 -2
  20. package/api/resources/index.d.ts +1 -1
  21. package/api/resources/index.js +2 -2
  22. package/dist/Client.js +10 -3
  23. package/dist/api/resources/empathicVoice/types/ReturnConfig.d.ts +2 -2
  24. package/dist/api/resources/index.d.ts +1 -1
  25. package/dist/api/resources/index.js +2 -2
  26. package/dist/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
  27. package/dist/serialization/resources/empathicVoice/types/ReturnConfig.js +1 -1
  28. package/dist/serialization/resources/index.d.ts +1 -1
  29. package/dist/serialization/resources/index.js +2 -2
  30. package/dist/version.d.ts +1 -1
  31. package/dist/version.js +1 -1
  32. package/package.json +1 -1
  33. package/reference.md +702 -702
  34. package/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
  35. package/serialization/resources/empathicVoice/types/ReturnConfig.js +1 -1
  36. package/serialization/resources/index.d.ts +1 -1
  37. package/serialization/resources/index.js +2 -2
  38. package/version.d.ts +1 -1
  39. package/version.js +1 -1
@@ -0,0 +1,626 @@
1
+ imports:
2
+ root: __package__.yml
3
+ service:
4
+ auth: false
5
+ base-path: ''
6
+ endpoints:
7
+ list-tools:
8
+ path: /v0/evi/tools
9
+ method: GET
10
+ auth: true
11
+ docs: >-
12
+ Fetches a paginated list of **Tools**.
13
+
14
+
15
+ Refer to our [tool
16
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
17
+ guide for comprehensive instructions on defining and integrating tools
18
+ into EVI.
19
+ pagination:
20
+ offset: $request.page_number
21
+ results: $response.tools_page
22
+ source:
23
+ openapi: evi-openapi.json
24
+ display-name: List tools
25
+ request:
26
+ name: ToolsListToolsRequest
27
+ query-parameters:
28
+ page_number:
29
+ type: optional<integer>
30
+ default: 0
31
+ docs: >-
32
+ Specifies the page number to retrieve, enabling pagination.
33
+
34
+
35
+ This parameter uses zero-based indexing. For example, setting
36
+ `page_number` to 0 retrieves the first page of results (items 0-9
37
+ if `page_size` is 10), setting `page_number` to 1 retrieves the
38
+ second page (items 10-19), and so on. Defaults to 0, which
39
+ retrieves the first page.
40
+ page_size:
41
+ type: optional<integer>
42
+ docs: >-
43
+ Specifies the maximum number of results to include per page,
44
+ enabling pagination. The value must be between 1 and 100,
45
+ inclusive.
46
+
47
+
48
+ For example, if `page_size` is set to 10, each page will include
49
+ up to 10 items. Defaults to 10.
50
+ restrict_to_most_recent:
51
+ type: optional<boolean>
52
+ docs: >-
53
+ By default, `restrict_to_most_recent` is set to true, returning
54
+ only the latest version of each tool. To include all versions of
55
+ each tool in the list, set `restrict_to_most_recent` to false.
56
+ name:
57
+ type: optional<string>
58
+ docs: Filter to only include tools with name.
59
+ response:
60
+ docs: Success
61
+ type: root.ReturnPagedUserDefinedTools
62
+ status-code: 200
63
+ errors:
64
+ - root.BadRequestError
65
+ examples:
66
+ - query-parameters:
67
+ page_number: 0
68
+ page_size: 2
69
+ response:
70
+ body:
71
+ page_number: 0
72
+ page_size: 2
73
+ total_pages: 1
74
+ tools_page:
75
+ - tool_type: FUNCTION
76
+ id: d20827af-5d8d-4f66-b6b9-ce2e3e1ea2b2
77
+ version: 0
78
+ version_type: FIXED
79
+ version_description: Fetches user's current location.
80
+ name: get_current_location
81
+ created_on: 1715267200693
82
+ modified_on: 1715267200693
83
+ fallback_content: Unable to fetch location.
84
+ description: Fetches user's current location.
85
+ parameters: >-
86
+ { "type": "object", "properties": { "location": { "type":
87
+ "string", "description": "The city and state, e.g. San
88
+ Francisco, CA" }}, "required": ["location"] }
89
+ - tool_type: FUNCTION
90
+ id: 4442f3ea-9038-40e3-a2ce-1522b7de770f
91
+ version: 0
92
+ version_type: FIXED
93
+ version_description: >-
94
+ Fetches current weather and uses celsius or fahrenheit based
95
+ on location of user.
96
+ name: get_current_weather
97
+ created_on: 1715266126705
98
+ modified_on: 1715266126705
99
+ fallback_content: Unable to fetch location.
100
+ description: >-
101
+ Fetches current weather and uses celsius or fahrenheit based
102
+ on location of user.
103
+ parameters: >-
104
+ { "type": "object", "properties": { "location": { "type":
105
+ "string", "description": "The city and state, e.g. San
106
+ Francisco, CA" }, "format": { "type": "string", "enum":
107
+ ["celsius", "fahrenheit"], "description": "The temperature
108
+ unit to use. Infer this from the users location." } },
109
+ "required": ["location", "format"] }
110
+ create-tool:
111
+ path: /v0/evi/tools
112
+ method: POST
113
+ auth: true
114
+ docs: >-
115
+ Creates a **Tool** that can be added to an [EVI
116
+ configuration](/reference/speech-to-speech-evi/configs/create-config).
117
+
118
+
119
+ Refer to our [tool
120
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
121
+ guide for comprehensive instructions on defining and integrating tools
122
+ into EVI.
123
+ source:
124
+ openapi: evi-openapi.json
125
+ display-name: Create tool
126
+ request:
127
+ name: PostedUserDefinedTool
128
+ body:
129
+ properties:
130
+ name:
131
+ type: string
132
+ docs: Name applied to all versions of a particular Tool.
133
+ version_description:
134
+ type: optional<string>
135
+ docs: An optional description of the Tool version.
136
+ description:
137
+ type: optional<string>
138
+ docs: >-
139
+ An optional description of what the Tool does, used by the
140
+ supplemental LLM to choose when and how to call the function.
141
+ parameters:
142
+ type: string
143
+ docs: >-
144
+ Stringified JSON defining the parameters used by this version of
145
+ the Tool.
146
+
147
+
148
+ These parameters define the inputs needed for the Tool's
149
+ execution, including the expected data type and description for
150
+ each input field. Structured as a stringified JSON schema, this
151
+ format ensures the Tool receives data in the expected format.
152
+ fallback_content:
153
+ type: optional<string>
154
+ docs: >-
155
+ Optional text passed to the supplemental LLM in place of the
156
+ tool call result. The LLM then uses this text to generate a
157
+ response back to the user, ensuring continuity in the
158
+ conversation if the Tool errors.
159
+ content-type: application/json
160
+ response:
161
+ docs: Created
162
+ type: optional<root.ReturnUserDefinedTool>
163
+ status-code: 201
164
+ errors:
165
+ - root.BadRequestError
166
+ examples:
167
+ - request:
168
+ name: get_current_weather
169
+ parameters: >-
170
+ { "type": "object", "properties": { "location": { "type":
171
+ "string", "description": "The city and state, e.g. San Francisco,
172
+ CA" }, "format": { "type": "string", "enum": ["celsius",
173
+ "fahrenheit"], "description": "The temperature unit to use. Infer
174
+ this from the users location." } }, "required": ["location",
175
+ "format"] }
176
+ version_description: >-
177
+ Fetches current weather and uses celsius or fahrenheit based on
178
+ location of user.
179
+ description: This tool is for getting the current weather.
180
+ fallback_content: Unable to fetch current weather.
181
+ response:
182
+ body:
183
+ tool_type: FUNCTION
184
+ id: aa9b71c4-723c-47ff-9f83-1a1829e74376
185
+ version: 0
186
+ version_type: FIXED
187
+ version_description: >-
188
+ Fetches current weather and uses celsius or fahrenheit based on
189
+ location of user.
190
+ name: get_current_weather
191
+ created_on: 1715275452390
192
+ modified_on: 1715275452390
193
+ fallback_content: Unable to fetch current weather.
194
+ description: This tool is for getting the current weather.
195
+ parameters: >-
196
+ { "type": "object", "properties": { "location": { "type":
197
+ "string", "description": "The city and state, e.g. San
198
+ Francisco, CA" }, "format": { "type": "string", "enum":
199
+ ["celsius", "fahrenheit"], "description": "The temperature unit
200
+ to use. Infer this from the users location." } }, "required":
201
+ ["location", "format"] }
202
+ list-tool-versions:
203
+ path: /v0/evi/tools/{id}
204
+ method: GET
205
+ auth: true
206
+ docs: >-
207
+ Fetches a list of a **Tool's** versions.
208
+
209
+
210
+ Refer to our [tool
211
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
212
+ guide for comprehensive instructions on defining and integrating tools
213
+ into EVI.
214
+ pagination:
215
+ offset: $request.page_number
216
+ results: $response.tools_page
217
+ source:
218
+ openapi: evi-openapi.json
219
+ path-parameters:
220
+ id:
221
+ type: string
222
+ docs: Identifier for a Tool. Formatted as a UUID.
223
+ display-name: List tool versions
224
+ request:
225
+ name: ToolsListToolVersionsRequest
226
+ query-parameters:
227
+ page_number:
228
+ type: optional<integer>
229
+ default: 0
230
+ docs: >-
231
+ Specifies the page number to retrieve, enabling pagination.
232
+
233
+
234
+ This parameter uses zero-based indexing. For example, setting
235
+ `page_number` to 0 retrieves the first page of results (items 0-9
236
+ if `page_size` is 10), setting `page_number` to 1 retrieves the
237
+ second page (items 10-19), and so on. Defaults to 0, which
238
+ retrieves the first page.
239
+ page_size:
240
+ type: optional<integer>
241
+ docs: >-
242
+ Specifies the maximum number of results to include per page,
243
+ enabling pagination. The value must be between 1 and 100,
244
+ inclusive.
245
+
246
+
247
+ For example, if `page_size` is set to 10, each page will include
248
+ up to 10 items. Defaults to 10.
249
+ restrict_to_most_recent:
250
+ type: optional<boolean>
251
+ docs: >-
252
+ By default, `restrict_to_most_recent` is set to true, returning
253
+ only the latest version of each tool. To include all versions of
254
+ each tool in the list, set `restrict_to_most_recent` to false.
255
+ response:
256
+ docs: Success
257
+ type: root.ReturnPagedUserDefinedTools
258
+ status-code: 200
259
+ errors:
260
+ - root.BadRequestError
261
+ examples:
262
+ - path-parameters:
263
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
264
+ response:
265
+ body:
266
+ page_number: 0
267
+ page_size: 10
268
+ total_pages: 1
269
+ tools_page:
270
+ - tool_type: FUNCTION
271
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
272
+ version: 1
273
+ version_type: FIXED
274
+ version_description: >-
275
+ Fetches current weather and uses celsius, fahrenheit, or
276
+ kelvin based on location of user.
277
+ name: get_current_weather
278
+ created_on: 1715277014228
279
+ modified_on: 1715277602313
280
+ fallback_content: Unable to fetch current weather.
281
+ description: This tool is for getting the current weather.
282
+ parameters: >-
283
+ { "type": "object", "properties": { "location": { "type":
284
+ "string", "description": "The city and state, e.g. San
285
+ Francisco, CA" }, "format": { "type": "string", "enum":
286
+ ["celsius", "fahrenheit", "kelvin"], "description": "The
287
+ temperature unit to use. Infer this from the users
288
+ location." } }, "required": ["location", "format"] }
289
+ create-tool-version:
290
+ path: /v0/evi/tools/{id}
291
+ method: POST
292
+ auth: true
293
+ docs: >-
294
+ Updates a **Tool** by creating a new version of the **Tool**.
295
+
296
+
297
+ Refer to our [tool
298
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
299
+ guide for comprehensive instructions on defining and integrating tools
300
+ into EVI.
301
+ source:
302
+ openapi: evi-openapi.json
303
+ path-parameters:
304
+ id:
305
+ type: string
306
+ docs: Identifier for a Tool. Formatted as a UUID.
307
+ display-name: Create tool version
308
+ request:
309
+ name: PostedUserDefinedToolVersion
310
+ body:
311
+ properties:
312
+ version_description:
313
+ type: optional<string>
314
+ docs: An optional description of the Tool version.
315
+ description:
316
+ type: optional<string>
317
+ docs: >-
318
+ An optional description of what the Tool does, used by the
319
+ supplemental LLM to choose when and how to call the function.
320
+ parameters:
321
+ type: string
322
+ docs: >-
323
+ Stringified JSON defining the parameters used by this version of
324
+ the Tool.
325
+
326
+
327
+ These parameters define the inputs needed for the Tool's
328
+ execution, including the expected data type and description for
329
+ each input field. Structured as a stringified JSON schema, this
330
+ format ensures the Tool receives data in the expected format.
331
+ fallback_content:
332
+ type: optional<string>
333
+ docs: >-
334
+ Optional text passed to the supplemental LLM in place of the
335
+ tool call result. The LLM then uses this text to generate a
336
+ response back to the user, ensuring continuity in the
337
+ conversation if the Tool errors.
338
+ content-type: application/json
339
+ response:
340
+ docs: Created
341
+ type: optional<root.ReturnUserDefinedTool>
342
+ status-code: 201
343
+ errors:
344
+ - root.BadRequestError
345
+ examples:
346
+ - path-parameters:
347
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
348
+ request:
349
+ parameters: >-
350
+ { "type": "object", "properties": { "location": { "type":
351
+ "string", "description": "The city and state, e.g. San Francisco,
352
+ CA" }, "format": { "type": "string", "enum": ["celsius",
353
+ "fahrenheit", "kelvin"], "description": "The temperature unit to
354
+ use. Infer this from the users location." } }, "required":
355
+ ["location", "format"] }
356
+ version_description: >-
357
+ Fetches current weather and uses celsius, fahrenheit, or kelvin
358
+ based on location of user.
359
+ fallback_content: Unable to fetch current weather.
360
+ description: This tool is for getting the current weather.
361
+ response:
362
+ body:
363
+ tool_type: FUNCTION
364
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
365
+ version: 1
366
+ version_type: FIXED
367
+ version_description: >-
368
+ Fetches current weather and uses celsius, fahrenheit, or kelvin
369
+ based on location of user.
370
+ name: get_current_weather
371
+ created_on: 1715277014228
372
+ modified_on: 1715277602313
373
+ fallback_content: Unable to fetch current weather.
374
+ description: This tool is for getting the current weather.
375
+ parameters: >-
376
+ { "type": "object", "properties": { "location": { "type":
377
+ "string", "description": "The city and state, e.g. San
378
+ Francisco, CA" }, "format": { "type": "string", "enum":
379
+ ["celsius", "fahrenheit", "kelvin"], "description": "The
380
+ temperature unit to use. Infer this from the users location." }
381
+ }, "required": ["location", "format"] }
382
+ delete-tool:
383
+ path: /v0/evi/tools/{id}
384
+ method: DELETE
385
+ auth: true
386
+ docs: >-
387
+ Deletes a **Tool** and its versions.
388
+
389
+
390
+ Refer to our [tool
391
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
392
+ guide for comprehensive instructions on defining and integrating tools
393
+ into EVI.
394
+ source:
395
+ openapi: evi-openapi.json
396
+ path-parameters:
397
+ id:
398
+ type: string
399
+ docs: Identifier for a Tool. Formatted as a UUID.
400
+ display-name: Delete tool
401
+ errors:
402
+ - root.BadRequestError
403
+ examples:
404
+ - path-parameters:
405
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
406
+ update-tool-name:
407
+ path: /v0/evi/tools/{id}
408
+ method: PATCH
409
+ auth: true
410
+ docs: >-
411
+ Updates the name of a **Tool**.
412
+
413
+
414
+ Refer to our [tool
415
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
416
+ guide for comprehensive instructions on defining and integrating tools
417
+ into EVI.
418
+ source:
419
+ openapi: evi-openapi.json
420
+ path-parameters:
421
+ id:
422
+ type: string
423
+ docs: Identifier for a Tool. Formatted as a UUID.
424
+ display-name: Update tool name
425
+ request:
426
+ name: PostedUserDefinedToolName
427
+ body:
428
+ properties:
429
+ name:
430
+ type: string
431
+ docs: Name applied to all versions of a particular Tool.
432
+ content-type: application/json
433
+ response:
434
+ docs: Success
435
+ type: text
436
+ status-code: 200
437
+ errors:
438
+ - root.BadRequestError
439
+ examples:
440
+ - path-parameters:
441
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
442
+ request:
443
+ name: get_current_temperature
444
+ get-tool-version:
445
+ path: /v0/evi/tools/{id}/version/{version}
446
+ method: GET
447
+ auth: true
448
+ docs: >-
449
+ Fetches a specified version of a **Tool**.
450
+
451
+
452
+ Refer to our [tool
453
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
454
+ guide for comprehensive instructions on defining and integrating tools
455
+ into EVI.
456
+ source:
457
+ openapi: evi-openapi.json
458
+ path-parameters:
459
+ id:
460
+ type: string
461
+ docs: Identifier for a Tool. Formatted as a UUID.
462
+ version:
463
+ type: integer
464
+ docs: >-
465
+ Version number for a Tool.
466
+
467
+
468
+ Tools, Configs, Custom Voices, and Prompts are versioned. This
469
+ versioning system supports iterative development, allowing you to
470
+ progressively refine tools and revert to previous versions if
471
+ needed.
472
+
473
+
474
+ Version numbers are integer values representing different iterations
475
+ of the Tool. Each update to the Tool increments its version number.
476
+ display-name: Get tool version
477
+ response:
478
+ docs: Success
479
+ type: optional<root.ReturnUserDefinedTool>
480
+ status-code: 200
481
+ errors:
482
+ - root.BadRequestError
483
+ examples:
484
+ - path-parameters:
485
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
486
+ version: 1
487
+ response:
488
+ body:
489
+ tool_type: FUNCTION
490
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
491
+ version: 1
492
+ version_type: FIXED
493
+ version_description: >-
494
+ Fetches current weather and uses celsius, fahrenheit, or kelvin
495
+ based on location of user.
496
+ name: string
497
+ created_on: 1715277014228
498
+ modified_on: 1715277602313
499
+ fallback_content: Unable to fetch current weather.
500
+ description: This tool is for getting the current weather.
501
+ parameters: >-
502
+ { "type": "object", "properties": { "location": { "type":
503
+ "string", "description": "The city and state, e.g. San
504
+ Francisco, CA" }, "format": { "type": "string", "enum":
505
+ ["celsius", "fahrenheit", "kelvin"], "description": "The
506
+ temperature unit to use. Infer this from the users location." }
507
+ }, "required": ["location", "format"] }
508
+ delete-tool-version:
509
+ path: /v0/evi/tools/{id}/version/{version}
510
+ method: DELETE
511
+ auth: true
512
+ docs: >-
513
+ Deletes a specified version of a **Tool**.
514
+
515
+
516
+ Refer to our [tool
517
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
518
+ guide for comprehensive instructions on defining and integrating tools
519
+ into EVI.
520
+ source:
521
+ openapi: evi-openapi.json
522
+ path-parameters:
523
+ id:
524
+ type: string
525
+ docs: Identifier for a Tool. Formatted as a UUID.
526
+ version:
527
+ type: integer
528
+ docs: >-
529
+ Version number for a Tool.
530
+
531
+
532
+ Tools, Configs, Custom Voices, and Prompts are versioned. This
533
+ versioning system supports iterative development, allowing you to
534
+ progressively refine tools and revert to previous versions if
535
+ needed.
536
+
537
+
538
+ Version numbers are integer values representing different iterations
539
+ of the Tool. Each update to the Tool increments its version number.
540
+ display-name: Delete tool version
541
+ errors:
542
+ - root.BadRequestError
543
+ examples:
544
+ - path-parameters:
545
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
546
+ version: 1
547
+ update-tool-description:
548
+ path: /v0/evi/tools/{id}/version/{version}
549
+ method: PATCH
550
+ auth: true
551
+ docs: >-
552
+ Updates the description of a specified **Tool** version.
553
+
554
+
555
+ Refer to our [tool
556
+ use](/docs/speech-to-speech-evi/features/tool-use#function-calling)
557
+ guide for comprehensive instructions on defining and integrating tools
558
+ into EVI.
559
+ source:
560
+ openapi: evi-openapi.json
561
+ path-parameters:
562
+ id:
563
+ type: string
564
+ docs: Identifier for a Tool. Formatted as a UUID.
565
+ version:
566
+ type: integer
567
+ docs: >-
568
+ Version number for a Tool.
569
+
570
+
571
+ Tools, Configs, Custom Voices, and Prompts are versioned. This
572
+ versioning system supports iterative development, allowing you to
573
+ progressively refine tools and revert to previous versions if
574
+ needed.
575
+
576
+
577
+ Version numbers are integer values representing different iterations
578
+ of the Tool. Each update to the Tool increments its version number.
579
+ display-name: Update tool description
580
+ request:
581
+ name: PostedUserDefinedToolVersionDescription
582
+ body:
583
+ properties:
584
+ version_description:
585
+ type: optional<string>
586
+ docs: An optional description of the Tool version.
587
+ content-type: application/json
588
+ response:
589
+ docs: Success
590
+ type: optional<root.ReturnUserDefinedTool>
591
+ status-code: 200
592
+ errors:
593
+ - root.BadRequestError
594
+ examples:
595
+ - path-parameters:
596
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
597
+ version: 1
598
+ request:
599
+ version_description: >-
600
+ Fetches current temperature, precipitation, wind speed, AQI, and
601
+ other weather conditions. Uses Celsius, Fahrenheit, or kelvin
602
+ depending on user's region.
603
+ response:
604
+ body:
605
+ tool_type: FUNCTION
606
+ id: 00183a3f-79ba-413d-9f3b-609864268bea
607
+ version: 1
608
+ version_type: FIXED
609
+ version_description: >-
610
+ Fetches current temperature, precipitation, wind speed, AQI, and
611
+ other weather conditions. Uses Celsius, Fahrenheit, or kelvin
612
+ depending on user's region.
613
+ name: string
614
+ created_on: 1715277014228
615
+ modified_on: 1715277602313
616
+ fallback_content: Unable to fetch current weather.
617
+ description: This tool is for getting the current weather.
618
+ parameters: >-
619
+ { "type": "object", "properties": { "location": { "type":
620
+ "string", "description": "The city and state, e.g. San
621
+ Francisco, CA" }, "format": { "type": "string", "enum":
622
+ ["celsius", "fahrenheit", "kelvin"], "description": "The
623
+ temperature unit to use. Infer this from the users location." }
624
+ }, "required": ["location", "format"] }
625
+ source:
626
+ openapi: evi-openapi.json