-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I should be able to generate OpenAI plugin from Kiota #4418
Comments
Also the generated plugin should be named |
Can you link a specification to the format please? |
Are you looking for something different than https://github.com/microsoft/kiota/blob/main/specs/cli/plugin-add.md?plain=1#L19-L30 Here is a format example of OpenAI plugin: {
"schema_version": "v1",
"name_for_human": "TODO List (No Auth)",
"name_for_model": "todo",
"description_for_human": "Manage your TODO list. You can add, remove and view your TODOs.",
"description_for_model": "Plugin for managing a TODO list, you can add, remove and view your TODOs.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "PLUGIN_HOSTNAME/openapi.yaml"
},
"logo_url": "PLUGIN_HOSTNAME/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://example.com/legal"
} |
Thanks for the additional details. Do you happen to know if we have support for those in the plugins library yet? do we have an issue to track that? |
Update from internal discussions:
|
Update: the format has been implemented in the parsing library, we should be able to move forward with implementation. |
When trying to generate OpenAI plugin manifest from Kiota, I go the following error
I should be able to generate OpenAI plugin manifest.
The text was updated successfully, but these errors were encountered: