Created
September 21, 2023 19:42
-
-
Save iceener/2b6f763c0cc1603955920ffd7e77fe52 to your computer and use it in GitHub Desktop.
OpenAI Function Calling (parameters)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"model": "gpt-3.5-turbo-0613", | |
"function_call": { | |
"name": "query_enrichment" | |
}, | |
"messages": [ | |
{ | |
"role": "user", | |
"content": "Write a newsletter." | |
} | |
], | |
"functions": [ | |
{ | |
"name": "query_enrichment", | |
"description": "Describe users query with semantic tags and classify with type", | |
"parameters": { | |
"type": "object", | |
"properties": { | |
"command": { | |
"type": "boolean", | |
"description": "Set to 'true' when query is direct command for AI. Set to 'false' when queries asks for saying/writing/translating/explaining something and all other." | |
}, | |
"type": { | |
"type": "string", | |
"description": "memory (queries about the user and/or AI), notes|links (queries about user's notes|links). By default pick 'memory'.", | |
"enum": ["memory", "notes", "links"] | |
}, | |
"tags": { | |
"type": "array", | |
"description": "Multiple semantic tags/keywords that enriches query for search purposes (similar words, meanings). When query refers to the user, add 'overment' tag, and when refers to 'you' add tag 'Alice'", | |
"items": { | |
"type": "string" | |
} | |
} | |
}, | |
"required": [ | |
"type", "tags", "command" | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment