fix(http_provider): Remove extra parameter from CreateProvider function.
This commit is contained in:
parent
4b886b6573
commit
16e5a02953
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