release: 1.0.5

fix

fix
This commit is contained in:
Per Stark
2026-06-24 22:02:31 +02:00
parent ba3fd6ed46
commit 99faca05dc
119 changed files with 1057 additions and 700 deletions
+3 -3
View File
@@ -6,14 +6,14 @@ use std::{
sync::Arc,
};
use anyhow::{anyhow, Context, Result};
use anyhow::{Context, Result, anyhow};
use async_openai::Client;
use chrono::Utc;
use common::{
storage::{
db::SurrealDbClient,
store::{DynStorage, StorageManager},
types::{ingestion_payload::IngestionPayload, ingestion_task::IngestionTask, StoredObject},
types::{StoredObject, ingestion_payload::IngestionPayload, ingestion_task::IngestionTask},
},
utils::config::{AppConfig, StorageKind},
};
@@ -31,7 +31,7 @@ use crate::{
use crate::corpus::{
CorpusCacheConfig, CorpusHandle, CorpusManifest, CorpusMetadata, CorpusQuestion,
ParagraphShard, ParagraphShardStore, MANIFEST_VERSION,
MANIFEST_VERSION, ParagraphShard, ParagraphShardStore,
};
const INGESTION_SPEC_VERSION: u32 = 2;