App seems to be running for the first time. Can store an embedding, and can search.

This commit is contained in:
2026-01-13 22:59:38 -05:00
parent 98ea050bd8
commit 4dac36605b
9 changed files with 589 additions and 20 deletions

View File

@@ -17,8 +17,10 @@ public class QdrantConfiguration
public class EmbeddingConfiguration
{
public string ModelName { get; set; } = "sentence-transformers/all-MiniLM-L6-v2";
public int Dimension { get; set; } = 384;
public string ModelName { get; set; } = "sentence-transformers/all-MiniLM-L6-v2";
public int Dimension { get; set; } = 384;
public string ApiToken { get; set; } = string.Empty;
public bool UseLocalInference { get; set; } = true;
}
public class AppSettings