@replayio/app-building 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -190,8 +190,8 @@ Every POST body has this shape:
|
|
|
190
190
|
| `message.started` | Message processing begins | `iteration`, `prompt` |
|
|
191
191
|
| `message.done` | Message processing complete | `messageId`, `cost_usd`, `duration_ms`, `num_turns` |
|
|
192
192
|
| `message.error` | Message processing failed | `messageId`, `error` |
|
|
193
|
-
| `task.started` | Task processing begins | `iteration`, `
|
|
194
|
-
| `task.done` | Task processing complete | `
|
|
193
|
+
| `task.started` | Task processing begins | `iteration`, `skill`, `subtasks` |
|
|
194
|
+
| `task.done` | Task processing complete | `skill`, `cost`, `totalCost`, `failed` |
|
|
195
195
|
| `log` | Each log line | `line` |
|
|
196
196
|
|
|
197
197
|
### Example
|