updated win func

This commit is contained in:
2025-05-19 17:05:38 +02:00
parent b89051a37f
commit d9a9eba4c7
2 changed files with 13 additions and 7 deletions

View File

@@ -114,12 +114,16 @@ FUNCTIONS = [
{
"type": "function",
"function": {
"name": "windows_key",
"description": "Open the Start menu. Best to perform web searches, search apps, search settings, run Windows internal softwares, etc.",
"name": "search_pc",
"description": "Open the start menu, then searches for content. Use to open apps, open files/folders, or search the web.",
"parameters": {
"type": "object",
"properties": {},
"required": [],
"properties": {
"query": {
"type": "string",
"description": "The search query to perform."
},
"required": ["query"],
}
}
},