Skip to content
Merged
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
6 changes: 3 additions & 3 deletions mistralrs-quant/src/lora/static_lora.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ use super::StaticLoraConfig;
/// Static LoRA in the style of Phi-4 multimodal. Only when the layer regex for the specific LoRA matches.
///
/// Structure:
/// - prefix.base_layer.weight
/// - prefix.lora_A.<lora name>.weight
/// - prefix.lora_B.<lora name>.weight
/// - `prefix.base_layer.weight`
/// - `prefix.lora_A.<lora name>.weight`
/// - `prefix.lora_B.<lora name>.weight`
pub fn linear_no_bias_static_lora(
in_dim: usize,
out_dim: usize,
Expand Down
2 changes: 1 addition & 1 deletion mistralrs-server-core/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use tokio::{
/// ### Arguments
///
/// * `url_unparsed` - A string that can be:
/// - An HTTP/HTTPS URL (e.g., "https://example.com/image.png")
/// - An HTTP/HTTPS URL (e.g., "<https://example.com/image.png>")
/// - A file path (e.g., "/path/to/image.jpg" or "image.png")
/// - A data URL with base64 encoded image (e.g., "data:image/png;base64,...")
/// - A file URL (e.g., "file:///path/to/image.jpg")
Expand Down
2 changes: 0 additions & 2 deletions mistralrs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
//! - [`VisionModelBuilder`]
//! - [`AnyMoeModelBuilder`]
//!
//! Check out the [`v0_4_api`] module for concise documentation of this, newer API.
//!
//! ## Example
//! ```no_run
//! use anyhow::Result;
Expand Down
2 changes: 1 addition & 1 deletion mistralrs/src/vision_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl VisionModelBuilder {
}

/// Enable PagedAttention. Configure PagedAttention with a [`PagedAttentionConfig`] object, which
/// can be created with sensible values with a [`PagedAttentionMetaBuilder`].
/// can be created with sensible values with a [`PagedAttentionMetaBuilder`](crate::PagedAttentionMetaBuilder).
///
/// If PagedAttention is not supported (query with [`paged_attn_supported`]), this will do nothing.
pub fn with_paged_attn(
Expand Down
Loading