File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ export const codebaseIndexModelsSchema = z.object({
4747 ollama : z . record ( z . string ( ) , z . object ( { dimension : z . number ( ) } ) ) . optional ( ) ,
4848 "openai-compatible" : z . record ( z . string ( ) , z . object ( { dimension : z . number ( ) } ) ) . optional ( ) ,
4949 gemini : z . record ( z . string ( ) , z . object ( { dimension : z . number ( ) } ) ) . optional ( ) ,
50+ mistral : z . record ( z . string ( ) , z . object ( { dimension : z . number ( ) } ) ) . optional ( ) ,
5051} )
5152
5253export type CodebaseIndexModels = z . infer < typeof codebaseIndexModelsSchema >
@@ -62,6 +63,7 @@ export const codebaseIndexProviderSchema = z.object({
6263 codebaseIndexOpenAiCompatibleApiKey : z . string ( ) . optional ( ) ,
6364 codebaseIndexOpenAiCompatibleModelDimension : z . number ( ) . optional ( ) ,
6465 codebaseIndexGeminiApiKey : z . string ( ) . optional ( ) ,
66+ codebaseIndexMistralApiKey : z . string ( ) . optional ( ) ,
6567} )
6668
6769export type CodebaseIndexProvider = z . infer < typeof codebaseIndexProviderSchema >
You can’t perform that action at this time.
0 commit comments