Backend API Service
This service receives a Google Drive link, analyzes the content, and returns a summary and key points in JSON format.
Send a POST request to /api/summarize with a JSON body matching the request format below.
Request Format
{
"driveLink": "https://drive.google.com/file/d/your-file-id/view"
}Response Format
{
"summary": "This is a concise summary of the document's content.",
"keyInformation": "These are the key points and important information extracted from the document."
}