c62d8daea8
Move all 29 workspace members from packages/<name>/ to crates/<name>/. Updates: workspace Cargo.toml (members + path deps), justfile, root CLAUDE.md, scripts/build/CARGO_INSTALL.md, docs/architecture/crates.md (renamed from packages.md), structural references in docs/architecture and docs/configuration, per-crate CLAUDE.md self-references. Historical plans, reports, and building/ docs are left untouched. No behavior change; just check-all stays green and fermata tests pass.
83 lines
2.1 KiB
YAML
83 lines
2.1 KiB
YAML
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
|