Skip to main content
To ensure high-performance legal reasoning, the Scout Chat SDK allows you to inject specific case context into the session.

Injecting Context

Context can include specific document IDs from the Vault, jurisdictional rules, or entities from the Intelligence Canvas.
chat.setContext({
  matterId: 'matt_123',
  priorityDocs: ['doc_999', 'doc_888'],
  jurisdiction: 'NY_SD'
});

Dynamic Updates

You can update the context mid-session as the user navigates your application, allowing the agent to pivot its reasoning based on the current UI state.