Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/src/guide/observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

Lance can publish operational metrics to your monitoring stack. The table below
is the authoritative catalogue of the metrics Lance emits, shared verbatim with
the Rust [`lance::metrics`](https://docs.rs/lance/latest/lance/metrics/) module
documentation.
the Rust [`lance::metrics`](https://github.com/lance-format/lance/blob/main/rust/lance/src/metrics.md)
module documentation.

--8<-- "rust/lance/src/metrics.md"

Expand Down
2 changes: 1 addition & 1 deletion docs/src/guide/tokenizer.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Create a file named config.json in the root directory of the current model.
```

- The "main" field is optional. If not filled, the default is "dict.txt".
- "users" is the path of the user dictionary. For the format of the user dictionary, please refer to https://github.com/messense/jieba-rs/blob/main/src/data/dict.txt.
- "users" is the path of the user dictionary. For the format of the user dictionary, please refer to https://github.com/messense/jieba-rs/blob/main/jieba/src/data/dict.txt.

## Language Models of Lindera

Expand Down
3 changes: 2 additions & 1 deletion rust/lance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ keywords.workspace = true
categories.workspace = true

[package.metadata.docs.rs]
features = []
# Publish the feature-gated metrics catalogue; keep cloud backends off.
features = ["metrics"]
no-default-features = true

[package.metadata.cargo-machete]
Expand Down
Loading