GGKP Knowledge Brokerage API
Home
What is GGKP?
Home
What is GGKP?
  1. Classifier
  • Overview
  • Use Cases
  • Security
  • FAQ
  • Taxonomy
    • Retrieve Master Taxonomy
      GET
    • Retrieve Taxonomy by Term ID
      GET
    • Retrieve Domain-Specific Taxonomy
      GET
  • Search
    • Federated Search
      POST
    • Semantic Search
      POST
    • List Connected Sources
      GET
    • Register New Source
      POST
    • Upload Knowledge Products
      POST
    • List Products by Source
      GET
    • Delete Products
      DELETE
  • Classifier
    • Classify PDF Document
      POST
    • Generate Body and Summary
      POST
  • Bots
    • Generic Bot
      POST
  1. Classifier

Generate Body and Summary

POST
https://api.ggkp.org/generate-body-summary
Classifier
Uses AI to generate a comprehensive body text and summary for a knowledge product. Useful for creating metadata from PDFs or sparse content.

Request

Authorization
API Key
Add parameter in header
api-key
Example:
api-key: ********************
or
Header Params

Body Params multipart/form-dataRequired

Responses

🟢200
application/json
Generated body and summary
Body

🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.ggkp.org/generate-body-summary' \
--header 'api-key: <api-key>' \
--form 'title=""' \
--form 'body=""' \
--form 'taxonomy=""' \
--form 'domain_name=""' \
--form 'file=@""'
Response Response Example
{
    "status": "string",
    "body": "string",
    "summary": "string"
}
Previous
Classify PDF Document
Next
Generic Bot
Built with