mirror of
https://github.com/perstarkse/minne.git
synced 2026-05-28 10:29:30 +02:00
perf: avoid small own clones and intermediate Vec allocations
- Derive Copy on 6 small enums (MessageRole, TaskState, StorageKind, EmbeddingBackend, PdfIngestMode, KnowledgeEntityType) - Change create_ingestion_payload files param from Vec<FileInfo> to &[FileInfo] - Remove 5 intermediate Vec allocations (4 embedding serialization + 1 format_history) using write! loop - Remove 7 unnecessary .clone() calls exposed by Copy derive
This commit is contained in:
@@ -73,7 +73,7 @@ pub async fn ingest_data(
|
||||
input.content,
|
||||
input.context,
|
||||
input.category,
|
||||
file_infos,
|
||||
&file_infos,
|
||||
&user_id,
|
||||
)?;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user