mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
minor tweaks to fix for merge
This commit is contained in:
parent
5c1f337f81
commit
f43b197d28
2 changed files with 1 additions and 3 deletions
|
|
@ -22,7 +22,6 @@ export const codebaseIndexConfigSchema = z.object({
|
|||
codebaseIndexEnabled: z.boolean().optional(),
|
||||
codebaseIndexQdrantUrl: z.string().optional(),
|
||||
codebaseIndexEmbedderProvider: z
|
||||
.enum(["openai", "ollama", "openai-compatible", "gemini", "mistral", "watsonx"])
|
||||
.enum(["openai", "ollama", "openai-compatible", "gemini", "mistral", "vercel-ai-gateway", "watsonx"])
|
||||
.optional(),
|
||||
codebaseIndexEmbedderBaseUrl: z.string().optional(),
|
||||
|
|
|
|||
|
|
@ -1,13 +1,12 @@
|
|||
import { useCallback, useState, useEffect, useRef } from "react"
|
||||
import { VSCodeLink, VSCodeTextField } from "@vscode/webview-ui-toolkit/react"
|
||||
import { ModelInfo, watsonxAiDefaultModelId, type ProviderSettings } from "@roo-code/types"
|
||||
import { ModelInfo, OrganizationAllowList, watsonxAiDefaultModelId, type ProviderSettings } from "@roo-code/types"
|
||||
import { useAppTranslation } from "@src/i18n/TranslationContext"
|
||||
|
||||
import { vscode } from "@src/utils/vscode"
|
||||
import { Button, Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@src/components/ui"
|
||||
import { ExtensionMessage } from "@roo/ExtensionMessage"
|
||||
import { inputEventTransform } from "../transforms"
|
||||
import { OrganizationAllowList } from "@roo/cloud"
|
||||
import { RouterName } from "@roo/api"
|
||||
import { ModelPicker } from "../ModelPicker"
|
||||
import { Trans } from "react-i18next"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue