getProposalSentiment
Analyze public sentiment for a specific proposal by evaluating social media data from Discord and Twitter. Ideal for understanding community feedback on Futarchy protocol proposals.
Instructions
Get sentiment analysis for a specific proposal based on Discord and Twitter data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
proposalId | Yes | The ID of the proposal to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"proposalId": {
"description": "The ID of the proposal to analyze",
"type": "string"
}
},
"required": [
"proposalId"
],
"type": "object"
}