Changed order of tool parameters, switched over to gpt4o

This commit is contained in:
2024-08-17 19:21:15 -05:00
parent 31a041e300
commit a8d470333b
3 changed files with 11 additions and 9 deletions
+5 -5
View File
@@ -82,16 +82,16 @@ class GitHubTool(BaseTool):
"type": "string",
"description": "Path to the file in the repository"
},
"content": {
"type": "string",
"description": "Content of the file"
},
"commit_message": {
"type": "string",
"description": "Commit message"
},
"content": {
"type": "string",
"description": "Content of the file"
}
},
"required": ["file_path", "content", "commit_message"]
"required": ["file_path", "commit_message", "content"]
}
},
{