forked from openai/chatgpt-retrieval-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ai-plugin.json
25 lines (25 loc) · 1.05 KB
/
ai-plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"schema_version": "v1",
"name_for_model": "retrieval",
"name_for_human": "Retrieval Plugin",
"description_for_model": "Plugin for searching through the user's documents (such as files, emails, and more) to find answers to questions and retrieve relevant information. Use it whenever a user asks something that might be found in their personal information.",
"description_for_human": "Search through your documents.",
"auth" : {
"type":"oauth",
"client_url":"e.g. https://<your domain>/oauth/v2/authorize",
"authorization_url":"e.g. https://<your domain>/api/oauth.v2.access",
"scope":"search:read",
"authorization_content_type":"application/x-www-form-urlencoded",
"verification_tokens":{
"openai":"<token from add plugin flow from the ChatGPT UI>"
}
},
"api":{
"url": "https://your-app-url.com/.well-known/openapi.yaml",
"has_user_authentication":true,
"type":"openapi"
},
"logo_url": "https://your-app-url.com/.well-known/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "[email protected]"
}