fix: complete manutic/nomic-embed-code implementation

- Add manutic/nomic-embed-code to openai-compatible provider
- Ensures full compatibility as mentioned in original PR description
- Maintains same configuration as nomic-embed-code (3584 dimensions, 0.15 score threshold, code search query prefix)
This commit is contained in:
Roo Code 2025-07-18 17:29:38 +00:00
parent befcd2b5ef
commit bfd868cfa9

View file

@ -50,6 +50,11 @@ export const EMBEDDING_MODEL_PROFILES: EmbeddingModelProfiles = {
scoreThreshold: 0.15,
queryPrefix: "Represent this query for searching relevant code: ",
},
"manutic/nomic-embed-code": {
dimension: 3584,
scoreThreshold: 0.15,
queryPrefix: "Represent this query for searching relevant code: ",
},
},
gemini: {
"text-embedding-004": { dimension: 768 },