Ai Drive
Vand ID: vand-41ca1f40-d968-441a-92c8-155bb08bd022
Learn how to easily use the Ai Drive tool with the OpenAI API.
Chat with with all your pdfs files and more. Keep everything organized in your personal Ai Drive.
OpenAI function calls:
{ "name": "summarize", "description": "Provide the summary or highlights of the file linked. ALWAYS PROVIDE QUOTES AND PAGE CITIATIONS. Add at the end of your summary this We finished processing the whole document with the Ai Drive plugin. What else would you like to know?", "parameters": { "type": "object", "properties": { "pdf_url": { "type": "string", "description": "" }, "user_id": { "type": "string", "description": "" } }, "required": [ "pdf_url" ] } }
{ "name": "search", "description": "Semantic search into documents.", "parameters": { "type": "object", "properties": { "pdf_url": { "type": "string", "description": "" }, "query": { "type": "string", "description": "" }, "user_id": { "type": "string", "description": "" } }, "required": [ "pdf_url", "query" ] } }
Auth Type
noneServers
https://ai-drive-plugin-qvg2narjsa-uc.a.run.app
OpenAPI:
{ "openapi": "3.0.1", "info": { "title": "Ai Drive", "description": "Chat with with all your pdfs files and more. Keep everything organized your personal Ai Drive.", "version": "v1.0" }, "servers": [ { "url": "https://ai-drive-plugin-qvg2narjsa-uc.a.run.app" } ], "paths": { "/summarize": { "post": { "operationId": "summarize", "summary": "Provide the summary or highlights of the file linked. ALWAYS PROVIDE QUOTES AND PAGE CITIATIONS. Add at the end of your summary this We finished processing the whole document with the Ai Drive plugin. What else would you like to know?", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "pdf_url": { "type": "string" }, "user_id": { "type": "string" } }, "required": [ "pdf_url" ] } } } }, "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "object", "properties": { "Instructions": { "type": "string", "description": "Instructions for interpreting and presenting the content." }, "content_with_metadata": { "type": "array", "items": { "type": "string" } } }, "description": "Doc summary or top k chunks most likely to contain highlights, with related metadata." } } } } } } }, "/search": { "post": { "operationId": "search", "summary": "Semantic search into documents.", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "pdf_url": { "type": "string" }, "query": { "type": "string" }, "user_id": { "type": "string" } }, "required": [ "pdf_url", "query" ] } } } }, "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "object", "properties": { "Instructions": { "type": "string", "description": "Instructions for interpreting and presenting the content." }, "content_with_metadata": { "type": "array", "items": { "type": "string" } } }, "description": "The top k matching chunks from the search query with related metadata." } } } } } } } } }