Get verifiable sources with every response. Enable fact-checking, build trust, and provide users with links to original content.
Direct URLs to original content for verification
Users can verify claims against cited sources
Citations appear exactly where claims are made
When citations are enabled, the model automatically includes numbered references that link to the sources it used to generate the response.
from mythicdot import MythicDot
client = MythicDot()
response = client.responses.create(
model="mythic-4",
input="What causes climate change?",
tools=[
{
"type": "web_search",
"search_context_size": "medium"
}
],
include=["citations"] # Request citations
)
# Access text with inline citations
print(response.output_text)
# Access structured citation data
for citation in response.citations:
print(f"[{citation.index}] {citation.title}")
print(f" URL: {citation.url}")
Provide readers with links to original sources for every claim in AI-written articles
Link to medical journals and official health guidelines for sensitive health queries
Reference specific statutes, case law, and legal precedents in responses
Help students learn to verify sources and understand research methodology
Give users the confidence to verify every claim.