Spaces:
Running
A newer version of the Gradio SDK is available:
6.1.0
Models API Reference
This page documents the Pydantic models used throughout DeepCritical.
Evidence
Module: src.utils.models
Purpose: Represents evidence from search results.
Evidence Model start_line:33 end_line:44
Fields:
citation: Citation information (title, URL, date, authors)content: Evidence text contentrelevance: Relevance score (0.0-1.0)metadata: Additional metadata dictionary
Citation
Module: src.utils.models
Purpose: Citation information for evidence.
Citation Model start_line:12 end_line:30
Fields:
source: Source name (e.g., "pubmed", "clinicaltrials", "europepmc", "web", "rag")title: Article/trial titleurl: Source URLdate: Publication date (YYYY-MM-DD or "Unknown")authors: List of authors (optional)
KnowledgeGapOutput
Module: src.utils.models
Purpose: Output from knowledge gap evaluation.
KnowledgeGapOutput Model start_line:494 end_line:504
Fields:
research_complete: Boolean indicating if research is completeoutstanding_gaps: List of remaining knowledge gaps
AgentSelectionPlan
Module: src.utils.models
Purpose: Plan for tool/agent selection.
AgentSelectionPlan Model start_line:521 end_line:526
Fields:
tasks: List of agent tasks to execute
AgentTask
Module: src.utils.models
Purpose: Individual agent task.
AgentTask Model start_line:507 end_line:518
Fields:
gap: The knowledge gap being addressed (optional)agent: Name of agent to usequery: The specific query for the agententity_website: The website of the entity being researched, if known (optional)
ReportDraft
Module: src.utils.models
Purpose: Draft structure for long-form reports.
ReportDraft Model start_line:538 end_line:545
Fields:
sections: List of report sections
ReportSection
Module: src.utils.models
Purpose: Individual section in a report draft.
ReportDraftSection Model start_line:529 end_line:535
Fields:
section_title: The title of the sectionsection_content: The content of the section
ParsedQuery
Module: src.utils.models
Purpose: Parsed and improved query.
ParsedQuery Model start_line:557 end_line:572
Fields:
original_query: Original query stringimproved_query: Refined query stringresearch_mode: Research mode ("iterative" or "deep")key_entities: List of key entitiesresearch_questions: List of research questions
Conversation
Module: src.utils.models
Purpose: Conversation history with iterations.
Conversation Model start_line:331 end_line:337
Fields:
history: List of iteration data
IterationData
Module: src.utils.models
Purpose: Data for a single iteration.
IterationData Model start_line:315 end_line:328
Fields:
gap: The gap addressed in the iterationtool_calls: The tool calls madefindings: The findings collected from tool callsthought: The thinking done to reflect on the success of the iteration and next steps
AgentEvent
Module: src.utils.models
Purpose: Event emitted during research execution.
AgentEvent Model start_line:104 end_line:125
Fields:
type: Event type (e.g., "started", "search_complete", "complete")iteration: Iteration number (optional)data: Event data dictionary
BudgetStatus
Module: src.utils.models
Purpose: Current budget status.
BudgetStatus Model start_line:15 end_line:25
Fields:
tokens_used: Total tokens usedtokens_limit: Token budget limittime_elapsed_seconds: Time elapsed in secondstime_limit_seconds: Time budget limit (default: 600.0 seconds / 10 minutes)iterations: Number of iterations completediterations_limit: Maximum iterations (default: 10)iteration_tokens: Tokens used per iteration (iteration number -> token count)
See Also
- Architecture - Agents - How models are used
- Configuration - Model configuration