version: "0.1" sessions: - id: "session-chat" title: "Complex Chat Session" created_at: "2024-01-01T10:00:00Z" participants: - id: "user-1" kind: user display_name: "Alice" - id: "assistant-1" kind: assistant display_name: "Bob AI" - id: "system-1" kind: system messages: - id: "msg-1" session_id: "session-chat" role: system content: "System initialized" created_at: "2024-01-01T10:00:00Z" - id: "msg-2" session_id: "session-chat" role: user content: "What's the weather?" created_at: "2024-01-01T10:00:05Z" parent_id: "msg-1" - id: "msg-3" session_id: "session-chat" role: assistant content: "Let me check that for you." created_at: "2024-01-01T10:00:06Z" parent_id: "msg-2" metadata: thinking: true confidence: 0.95 - id: "msg-4" session_id: "session-chat" role: assistant content: "The weather is sunny with a temperature of 72°F." created_at: "2024-01-01T10:00:08Z" parent_id: "msg-3" - id: "session-debug" title: "Debug Session" created_at: "2024-01-02T00:00:00Z" participants: - id: "dev-1" kind: user display_name: "Developer" - id: "tool-1" kind: tool display_name: "Debugger" messages: - id: "debug-1" session_id: "session-debug" role: user content: "Run diagnostic" created_at: "2024-01-02T00:00:01Z" behavior: responder: fixture_only streaming: enabled: false tokens_per_chunk: 1 chunk_interval_ms: 50 responders: keyword_map: weather: "The weather is sunny." time: "The current time is noon." default_strategy: keywords random: seed: 42 corpus: - "Random response 1" - "Random response 2" - "Random response 3" streaming: enabled: true tokens_per_chunk: 10 chunk_interval_ms: 50