Skip to content
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

OpenAI GPT-4 (Independent Publisher) v1.4 Plugin #3476

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "OpenAI GPT",
"description": "OpenAI is an artificial intelligence research laboratory. The company conducts research in the field of AI with the stated goal of promoting and developing friendly AI in a way that benefits humanity as a whole. Through this connector you can access the Generative Pre-trained Transformer 4 (GPT-4), an autoregressive language model that uses deep learning to produce human-like text, plus many other models.",
"version": "1.3",
"version": "1.4",
"contact": {
"name": "Troy Taylor",
"url": "https://www.hitachisolutions.com",
Expand All @@ -27,7 +27,7 @@
"description": "Creates a completion for the provided prompt and parameters.",
"summary": "Create completion",
"operationId": "CompletionPost",
"deprecated": false,
"deprecated": true,
"parameters": [
{
"name": "body",
Expand All @@ -41,7 +41,7 @@
"type": "string",
"description": "ID of the model to use.",
"title": "Model",
"default": "gpt-4-1106-preview",
"default": "gpt-4-turbo",
"x-ms-dynamic-values": {
"operationId": "ModelsGet",
"value-path": "id",
Expand Down Expand Up @@ -189,6 +189,15 @@
}
}
}
},
"x-ms-openai-data": {
"openai-enabled": false,
"operations": [
{
"operationId": "CompletionPost",
"x-ms-require-user-confirmation": true
}
]
}
}
},
Expand Down Expand Up @@ -300,7 +309,7 @@
"type": "string",
"description": "The chat model.",
"title": "Model",
"default": "gpt-4-1106-preview",
"default": "gpt-4-turbo",
"x-ms-dynamic-values": {
"operationId": "ModelsGet",
"value-path": "id",
Expand All @@ -316,7 +325,8 @@
"role": {
"type": "string",
"description": "The role.",
"title": "Role"
"title": "Role",
"default": "user"
},
"content": {
"type": "string",
Expand Down Expand Up @@ -384,7 +394,16 @@
]
}
}
]
],
"x-ms-openai-data": {
"openai-enabled": true,
"operations": [
{
"operationId": "ChatPost",
"x-ms-require-user-confirmation": true
}
]
}
}
},
"/v1/edits": {
Expand Down Expand Up @@ -651,7 +670,16 @@
"summary": "List models",
"description": "Lists the currently available models, and provides basic information about each one such as the owner and availability.",
"operationId": "ModelsGet",
"parameters": []
"parameters": [],
"x-ms-openai-data": {
"openai-enabled": true,
"operations": [
{
"operationId": "ModelsGet",
"x-ms-require-user-confirmation": false
}
]
}
}
},
"/v1/fine_tuning/jobs": {
Expand Down Expand Up @@ -2029,5 +2057,10 @@
"propertyName": "Categories",
"propertyValue": "AI"
}
]
}
],
"x-ms-openai-manifest": {
"humanName": "OpenAI",
"modelDescription": "This is Copilot plugin for the OpenAI service.",
"contactEmail": "ttaylor@hitachisolutions.com"
}
}