Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions website/blog/releases/v1.0.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ Spice v1.0.2 adds support for running local filesystem-hosted DeepSeek models in

- **spice trace** New `spice trace` CLI command that outputs a detailed breakdown of traces and tasks, including tool usage and AI completions.

Examples:
Examples:

```shell
trace> spice trace ai_chat
[61cc6bd0e571c783] ( 2593.77ms) ai_chat
├── [69362c30f238076f] ( 0.36ms) tool_use::get_readiness
├── [b6b17f1a9a6b86dc] ( 982.21ms) ai_completion
├── [c30d692c6c41c5ee] ( 0.06ms) tool_use::list_datasets
└── [ce18756d5fef0df0] ( 1605.12ms) ai_completion
```shell
trace> spice trace ai_chat
[61cc6bd0e571c783] ( 2593.77ms) ai_chat
├── [69362c30f238076f] ( 0.36ms) tool_use::get_readiness
├── [b6b17f1a9a6b86dc] ( 982.21ms) ai_completion
├── [c30d692c6c41c5ee] ( 0.06ms) tool_use::list_datasets
└── [ce18756d5fef0df0] ( 1605.12ms) ai_completion

trace> spice trace ai_chat --trace-id 61cc6bd0e571c783
trace> spice trace ai_chat --trace-id 61cc6bd0e571c783

trace> spice trace ai_chat --id chatcmpl-AvXwmPSV1PMyGBi9dLfkEQTZPjhqz
```
trace> spice trace ai_chat --id chatcmpl-AvXwmPSV1PMyGBi9dLfkEQTZPjhqz
```

The `spice trace` CLI simply outputs data available in the `runtime.task_history` table which can also be queried by SQL.
The `spice trace` CLI simply outputs data available in the `runtime.task_history` table which can also be queried by SQL.

To learn more, see:
To learn more, see:

- [`spice trace` Documentation](https://spiceai.org/docs/cli/reference/trace)
- [Task History Documentation](https://spiceai.org/docs/reference/task_history)
- [`spice trace` Documentation](https://spiceai.org/docs/cli/reference/trace)
- [Task History Documentation](https://spiceai.org/docs/reference/task_history)

- **Filesystem-Hosted Models Provider:** Graduated to [Release Candidate (RC)](https://github.com/spiceai/spiceai/blob/trunk/docs/criteria/models/rc.md). To learn more, see the [Filesystem-Hosted Models Provider Documentation](https://spiceai.org/docs/components/models/filesystem).

Expand Down