mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 07:52:55 +00:00
Complete Django AI agent marketplace with security optimizations and clean deployment documentation without any API keys or secrets. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
38 lines
1.2 KiB
JSON
38 lines
1.2 KiB
JSON
{
|
|
"slug": "pdf-summarizer",
|
|
"name": "PDF Summarizer",
|
|
"short_description": "Extract and summarize content from PDF documents with AI analysis",
|
|
"description": "Upload PDF documents and get comprehensive AI-powered summaries, key insights, and analysis. Perfect for processing reports and research papers.",
|
|
"category": "document-processing",
|
|
"price": 8.0,
|
|
"agent_type": "form",
|
|
"system_type": "webhook",
|
|
"form_schema": {
|
|
"fields": [
|
|
{
|
|
"name": "pdf_file",
|
|
"type": "file",
|
|
"label": "Upload PDF Document",
|
|
"required": true,
|
|
"accept": ".pdf",
|
|
"max_size": "10MB"
|
|
},
|
|
{
|
|
"name": "analysis_type",
|
|
"type": "select",
|
|
"label": "Analysis Type",
|
|
"required": true,
|
|
"default": "summary",
|
|
"options": [
|
|
{"value": "", "label": "Select analysis type..."},
|
|
{"value": "summary", "label": "Document Summary"},
|
|
{"value": "key_points", "label": "Key Points Extraction"},
|
|
{"value": "detailed_analysis", "label": "Detailed Analysis"}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"webhook_url": "http://localhost:5678/webhook/simple-pdf-processor",
|
|
"access_url_name": "",
|
|
"display_url_name": ""
|
|
} |