Skip to content
Giorgos Moustakas
/ labAI · Tools

Cassette explorer

Reads a cuesheet cassette in the browser without installing anything. Drag-and-drop a .yaml file or paste its contents. Walks the recorded interactions with the same dark + ochre layout you get from cuesheet's local web UI.

stackyamlreact
Drop a .yaml cassette here, or paste the contents below.

1 interaction

  • URLhttps://api.anthropic.com/v1/messages
    Modelclaude-sonnet-4-5
    Request body
    {
      "max_tokens": 200,
      "messages": [
        {
          "content": "Summarize: caching is fast",
          "role": "user"
        }
      ],
      "model": "claude-sonnet-4-5"
    }
    Response body
    {
      "content": [
        {
          "text": "Caching skips work you already did. It is fast when the input repeats.",
          "type": "text"
        }
      ],
      "id": "msg_test",
      "usage": {
        "input_tokens": 24,
        "output_tokens": 17
      }
    }
Cassette explorer · Giorgos Moustakas