mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix: Add 'roo' provider to checkExistKey function (#7239)
This commit is contained in:
parent
c249ff81e9
commit
912eefd7b3
1 changed files with 2 additions and 2 deletions
|
|
@ -5,8 +5,8 @@ export function checkExistKey(config: ProviderSettings | undefined) {
|
|||
return false
|
||||
}
|
||||
|
||||
// Special case for human-relay, fake-ai, and claude-code providers which don't need any configuration.
|
||||
if (config.apiProvider && ["human-relay", "fake-ai", "claude-code"].includes(config.apiProvider)) {
|
||||
// Special case for human-relay, fake-ai, claude-code, and roo providers which don't need any configuration.
|
||||
if (config.apiProvider && ["human-relay", "fake-ai", "claude-code", "roo"].includes(config.apiProvider)) {
|
||||
return true
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue