Skip to content

Commit 2d4a731

Browse files
authored
Merge branch 'trunk' into fix/ducklake-kafka-keywords
2 parents 8aff673 + 67e78b8 commit 2d4a731

29 files changed

Lines changed: 87 additions & 284 deletions

File tree

website/docs/api/HTTP/list.api.mdx

Lines changed: 0 additions & 64 deletions
This file was deleted.

website/docs/api/HTTP/post-eval.api.mdx

Lines changed: 0 additions & 72 deletions
This file was deleted.

website/docs/api/HTTP/sidebar.ts

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -72,24 +72,6 @@ const sidebar: SidebarsConfig = {
7272
},
7373
],
7474
},
75-
{
76-
type: "category",
77-
label: "Evaluations",
78-
items: [
79-
{
80-
type: "doc",
81-
id: "api/HTTP/list",
82-
label: "List Evals",
83-
className: "api-method get",
84-
},
85-
{
86-
type: "doc",
87-
id: "api/HTTP/post-eval",
88-
label: "Run Eval",
89-
className: "api-method post",
90-
},
91-
],
92-
},
9375
{
9476
type: "category",
9577
label: "Iceberg",
@@ -196,12 +178,6 @@ const sidebar: SidebarsConfig = {
196178
type: "category",
197179
label: "Tools",
198180
items: [
199-
{
200-
type: "doc",
201-
id: "api/HTTP/list",
202-
label: "List Tools",
203-
className: "api-method get",
204-
},
205181
{
206182
type: "doc",
207183
id: "api/HTTP/post",

website/docs/cli/reference/chat.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ spice chat [flags] [<message>]
3434
- `--http-endpoint <endpoint>` (Deprecated) Runtime HTTP endpoint. Default: `http://localhost:8090`.
3535
- `--model <string>` Target model for the chat request. When omitted, the CLI uses the single ready model or prompts for a choice if several models are ready.
3636
- `--temperature <float32>` Model temperature used for chat request. Default: `1.0`.
37-
- `--user-agent <string>` Custom `User-Agent` header sent with every request.
38-
- `--responses` Direct all chats to the `/v1/responses` endpoint, which exposes configured models that support [OpenAI's Responses API](https://platform.openai.com/docs/api-reference/responses) and enables access to [OpenAI-hosted tools](https://platform.openai.com/docs/guides/tools). To learn more about Spice's support for OpenAI's Responses API, view the [OpenAI model provider documentation](../../components/models/openai) or the [Azure OpenAI model provider documentation](../../components/models/azure).
3937

4038
## Examples
4139

website/docs/cli/reference/completion.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

website/docs/cli/reference/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ spice [command] [--help]
2323
| [chat](reference/chat) | Chat with an LLM |
2424
| cloud | Manage Spice Cloud resources |
2525
| cluster | Cluster operations for the Spice runtime |
26-
| [completion](reference/completion) | Generate the autocompletion script for the specified shell |
2726
| [connect](reference/connect) | Connect to a Spice.ai Cloud Platform app |
2827
| [dataset](reference/dataset) | Dataset operations (configure datasets) |
2928
| [datasets](reference/datasets) | Lists datasets loaded by the Spice runtime |
30-
| eval | Run model evaluation |
3129
| help | Help about any command |
3230
| [init](reference/init) | Initialize Spice app - creates a new spicepod.yaml |
3331
| [install](reference/install) | Install or reinstall the Spice.ai runtime |

website/docs/cli/reference/init.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The command creates a `spicepod.yaml` with basic initial metadata about the app.
3030
```yaml
3131
# File: ./taxi-trips/spicepod.yaml
3232

33-
version: v1
33+
version: v2
3434
kind: Spicepod
3535
name: taxi-trips
3636
```
@@ -47,7 +47,7 @@ After execution, the current working directory contains the file `spicepod.yaml`
4747
```yaml
4848
# File: ./spicepod.yaml
4949

50-
version: v1
50+
version: v2
5151
kind: Spicepod
5252
name: taxi-trips
5353
```

website/docs/cli/reference/install.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ spice install [flavor] [flags]
1414

1515
#### flavor
1616

17-
- `` Install the core runtime that only includes data components
18-
- `ai` Install the AI-enabled runtime with both data components and AI components
17+
- `` Install the core runtime that only includes data components
18+
- `cuda` Install the runtime with CUDA GPU acceleration
19+
20+
Metal/CUDA acceleration is auto-detected by default.
1921

2022
#### Flags
2123

2224
- `-h`, `--help` Print this help message
23-
- `-c`, `--cpu` Install the CPU accelerated version of the AI runtime
2425
- `-f`, `--force` Force installation of the latest released runtime
2526

2627
### Examples
@@ -32,5 +33,5 @@ spice install
3233
### Additional Example
3334

3435
```shell
35-
spice install ai --cpu
36+
spice install cuda
3637
```

website/docs/cli/reference/models.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ spice models [flags]
2323
```shell
2424
>>> spice models
2525

26-
NAME FROM DATASETS STATUS
27-
modlz file:/Users/jeadie/Downloads/model.onnx [] Ready
26+
ID OWNED_BY STATUS ERROR
27+
modlz local Ready
2828
```
2929

3030
### Additional Example
3131

3232
```shell
3333
>>> spice models --tls-root-certificate-file /path/to/cert.pem
3434

35-
NAME FROM DATASETS STATUS
36-
modlz file:/Users/jeadie/Downloads/model.onnx [] Ready
35+
ID OWNED_BY STATUS ERROR
36+
modlz local Ready
3737
```

website/docs/cli/reference/trace.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,21 @@ spice trace [task] [flags]
1515

1616
`task` - The name of the task whose trace is requested. Supported tasks include:
1717

18-
- `accelerated_refresh`
18+
- `acceleration_refresh`
19+
- `ai`
1920
- `ai_chat`
2021
- `ai_completion`
22+
- `eval_run`
2123
- `sql_query`
2224
- `nsql`
25+
- `text_embed`
2326
- `tool_use::search`
2427
- `tool_use::list_datasets`
2528
- `tool_use::sql`
2629
- `tool_use::table_schema`
2730
- `tool_use::sample_data`
28-
- `tool_use::sql_query`
29-
- `tool_use::memory`
31+
- `tool_use::load_memory`
32+
- `tool_use::store_memory`
3033
- `search`
3134
- `scheduled_worker`
3235

0 commit comments

Comments
 (0)