For AI agents: a documentation index is available at https://docs.parallel.ai/llms.txt. The full text of all docs is at https://docs.parallel.ai/llms-full.txt. You may also fetch any page as Markdown by appending
.md to its URL or sending Accept: text/markdown.Overview
This guide walks through building an interactive research application using interactions. By chaininginteraction_id values across requests, each follow-up question automatically has the full context of prior turns — so you can drill deeper into a topic without restating what was already researched.
Example: Multi-Turn Research Session
Consider a research session where each question builds on the last:- “Which country won the most Winter Olympics gold medals in 2026?” — initial broad question
- “How many medals did they win?” — a follow-up that only makes sense with context from step 1
- “How does that compare to the second place country?” — drills deeper into the same thread
Building a Research Chat Loop
Wrap the interaction pattern in a loop to create a fully interactive research agent. Each user question chains off the previous answer’s context.Next Steps
- Deep Research: Comprehensive single-turn research — includes an example of chatting with deep research results
- Interactions: Full reference for the
interaction_idandprevious_interaction_idfields - Enrichment: Structured data enrichment
- Streaming Events: Monitor long-running research tasks in real time