Skip to content

Commit

Permalink
feat(pdf2md): make LLM provider be the default chunking provider
Browse files Browse the repository at this point in the history
  • Loading branch information
cdxker authored and fedhacks committed Nov 26, 2024
1 parent ebcd0e8 commit a2fdbfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf2md/server/src/routes/create_task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async fn create_task(
let provider = upload_file_data
.provider
.clone()
.unwrap_or(Provider::Chunkr);
.unwrap_or(Provider::LLM);

let mut clickhouse_task = models::FileTaskClickhouse {
id: uuid::Uuid::new_v4().to_string(),
Expand Down

0 comments on commit a2fdbfe

Please sign in to comment.