Skip to main content

Overview

The askfred_thread query retrieves a specific AskFred conversation thread by its ID, including the complete message history. This query provides full details about a thread including all questions asked, answers received, and suggested follow-up queries.

Arguments

String
required
The unique identifier of the AskFred thread to retrieve

Schema

Fields available to the AskFredThread query:
  • id: Unique identifier for the thread
  • title: Thread title
  • transcript_id: Associated transcript/meeting ID (if applicable)
  • user_id: ID of the user who created the thread
  • created_at: Timestamp when the thread was created
  • messages: Array of AskFredMessage objects containing:
    • id: Message identifier
    • thread_id: Parent thread ID
    • query: The question asked
    • answer: The AI-generated response
    • suggested_queries: Array of suggested follow-up questions
    • status: Message processing status (processing, completed, failed)
    • error: Error message if the query failed
    • created_at: When the message was created
    • updated_at: When the message was last updated

Usage Example

List All Threads

Get a summary of all your threads

Continue Thread

Add a follow-up question to this thread