refactor: extendable templates

refactor: simplification

refactor: simplification
This commit is contained in:
Per Stark
2026-01-13 15:57:12 +01:00
parent 037057d108
commit 354dc727c1
32 changed files with 711 additions and 579 deletions

View File

@@ -116,6 +116,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
config.clone(),
reranker_pool.clone(),
embedding_provider.clone(),
None,
)
.await?;
@@ -284,6 +285,7 @@ mod tests {
config.clone(),
None,
embedding_provider,
None,
)
.await
.expect("failed to build html state");

View File

@@ -71,6 +71,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
config.clone(),
reranker_pool,
embedding_provider,
None,
)
.await?;