fix(http_provider): Remove extra parameter from CreateProvider function.
This commit is contained in:
parent
087a7d667c
commit
e40565b533
1 changed files with 1 additions and 1 deletions
|
|
@ -320,7 +320,7 @@ func CreateProvider(cfg *config.Config) (LLMProvider, error) {
|
||||||
} else {
|
} else {
|
||||||
apiBase = "localhost:4321"
|
apiBase = "localhost:4321"
|
||||||
}
|
}
|
||||||
return NewGitHubCopilotProvider(apiBase, cfg.Providers.GitHubCopilot.ConnectMode, model), nil
|
return NewGitHubCopilotProvider(apiBase, cfg.Providers.GitHubCopilot.ConnectMode, model)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue