OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
assistant.search
Search for content within the assistant context.
- Key
- assistant.search
- Version
- 1.0.0
- Type
- operation (query)
- Title
- assistant.search
- Description
Search for content within the assistant context.
- Type: operation (query)
- Version: 1.0.0
- Stability: experimental
- Owners: @example.ai-chat-assistant
- Tags: assistant, search, chat
- Tags
- assistant,search,chat
- Owners
- @example.ai-chat-assistant
- Stability
- experimental
Search for content within the assistant context.
Goal
Allow the AI assistant to search and retrieve relevant information.
Context
Used by chat flows when the user asks for information lookup.
Source Definition
export const AssistantSearchContract = defineQuery({
meta: {
key: 'assistant.search',
version: '1.0.0',
stability: 'experimental',
owners: ['@example.ai-chat-assistant'],
tags: ['assistant', 'search', 'chat'],
description: 'Search for content within the assistant context.',
goal: 'Allow the AI assistant to search and retrieve relevant information.',
context: 'Used by chat flows when the user asks for information lookup.',
},
io: { input: AssistantSearchInputModel, output: AssistantSearchOutputModel },
policy: { auth: 'anonymous' },
});