summarize_conversation
Generate concise summaries of conversations using the specified conversation ID and prompt ID for better clarity and insight. Simplify lengthy discussions into key points.
Instructions
Summarize a conversation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversation_id | Yes | ||
end_date | No | ||
language | No | ||
limit | No | ||
message_ids | No | ||
prompt_id | Yes | ||
start_date | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"conversation_id": {
"minLength": 1,
"type": "string"
},
"end_date": {
"format": "date-time",
"type": "string"
},
"language": {
"type": "string"
},
"limit": {
"default": 50,
"type": "number"
},
"message_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"prompt_id": {
"minLength": 1,
"type": "string"
},
"start_date": {
"format": "date-time",
"type": "string"
}
},
"required": [
"conversation_id",
"prompt_id"
],
"type": "object"
}