Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

gpt-4o-mini.yaml 573 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  1. id: 'openai:chat:gpt-4o-mini'
  2. config:
  3. functions:
  4. [
  5. {
  6. 'name': 'get_current_weather',
  7. 'description': 'Get the current weather in a given location',
  8. 'parameters':
  9. {
  10. 'type': 'object',
  11. 'properties':
  12. {
  13. 'location':
  14. { 'type': 'string', 'description': 'The city and state, e.g. San Francisco, CA' },
  15. 'unit': { 'type': 'string', 'enum': ['celsius', 'fahrenheit'] },
  16. },
  17. 'required': ['location'],
  18. },
  19. },
  20. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...