analyze_linkedin_chat
Analyze LinkedIn profiles, content, and networks by asking questions or reviewing conversation history for contextual insights. Enhances understanding of LinkedIn data through multi-turn interactions.
Instructions
Ask questions about the user's LinkedIn profile, content, or network, with support for multi-turn conversations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversation_history | No | Optional. Previous messages in the conversation for context. Each message must have 'role' (user/assistant) and 'content' (text). | |
query | Yes | The question or request about LinkedIn data to be analyzed. |
Input Schema (JSON Schema)
{
"properties": {
"conversation_history": {
"description": "Optional. Previous messages in the conversation for context. Each message must have 'role' (user/assistant) and 'content' (text).",
"items": {
"properties": {
"content": {
"description": "The text content of the message.",
"type": "string"
},
"role": {
"description": "The sender of the message: 'user' or 'assistant'.",
"type": "string"
}
},
"required": [
"role",
"content"
],
"type": "object"
},
"type": "array"
},
"query": {
"description": "The question or request about LinkedIn data to be analyzed.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}