cargo fmt
This commit is contained in:
parent
dc49dec4f0
commit
fbd6b5b434
1 changed files with 1 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
mod db;
|
mod db;
|
||||||
// pub mod embedding;
|
|
||||||
mod embedding_queue;
|
mod embedding_queue;
|
||||||
mod parsing;
|
mod parsing;
|
||||||
pub mod semantic_index_settings;
|
pub mod semantic_index_settings;
|
||||||
|
@ -8,10 +7,10 @@ pub mod semantic_index_settings;
|
||||||
mod semantic_index_tests;
|
mod semantic_index_tests;
|
||||||
|
|
||||||
use crate::semantic_index_settings::SemanticIndexSettings;
|
use crate::semantic_index_settings::SemanticIndexSettings;
|
||||||
|
use ai::embedding::{Embedding, EmbeddingProvider, OpenAIEmbeddings};
|
||||||
use anyhow::{anyhow, Result};
|
use anyhow::{anyhow, Result};
|
||||||
use collections::{BTreeMap, HashMap, HashSet};
|
use collections::{BTreeMap, HashMap, HashSet};
|
||||||
use db::VectorDatabase;
|
use db::VectorDatabase;
|
||||||
use ai::embedding::{Embedding, EmbeddingProvider, OpenAIEmbeddings};
|
|
||||||
use embedding_queue::{EmbeddingQueue, FileToEmbed};
|
use embedding_queue::{EmbeddingQueue, FileToEmbed};
|
||||||
use futures::{future, FutureExt, StreamExt};
|
use futures::{future, FutureExt, StreamExt};
|
||||||
use gpui::{AppContext, AsyncAppContext, Entity, ModelContext, ModelHandle, Task, WeakModelHandle};
|
use gpui::{AppContext, AsyncAppContext, Entity, ModelContext, ModelHandle, Task, WeakModelHandle};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue