Skip to main content
Retrieve the full conversation history for a session. This maps directly to GET /sessions/{id}/messages described in the Messages API reference.

Usage

motus serve messages <url> <id>

Examples

Get message history

motus serve messages http://localhost:8000 550e8400-e29b-41d4-a716-446655440000
[
  { "role": "user", "content": "hello" },
  { "role": "assistant", "content": "hi there" }
]