reworked ProjectState to include additional context

This commit is contained in:
KCaverly 2023-08-22 11:58:48 +02:00
parent 3d89cd10a4
commit ced2b2aec3
4 changed files with 146 additions and 13 deletions

View file

@ -39,7 +39,7 @@ struct OpenAIEmbeddingResponse {
#[derive(Debug, Deserialize)]
struct OpenAIEmbedding {
embedding: Vec<f16>,
embedding: Vec<f32>,
index: usize,
object: String,
}