mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Regenerate TS client to drop duplicated method from merge
The merge of main kept two copies of testProviderCredentials in the generated models-api.ts; regeneration is authoritative. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
85f3286c66
commit
558c1010f8
1 changed files with 0 additions and 23 deletions
23
lib/packages/fabro-api-client/src/api/models-api.ts
generated
23
lib/packages/fabro-api-client/src/api/models-api.ts
generated
|
|
@ -397,17 +397,6 @@ export const ModelsApiFactory = function (configuration?: Configuration, basePat
|
|||
testProviderCredentials(provider: string, providerCredentialTestRequest: ProviderCredentialTestRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProviderCredentialTestResponse> {
|
||||
return localVarFp.testProviderCredentials(provider, providerCredentialTestRequest, options).then((request) => request(axios, basePath));
|
||||
},
|
||||
/**
|
||||
* Validates an LLM provider API key against the server\'s effective catalog without persisting it.
|
||||
* @summary Test Provider Credentials
|
||||
* @param {string} provider The provider identifier.
|
||||
* @param {ProviderCredentialTestRequest} providerCredentialTestRequest
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
testProviderCredentials(provider: string, providerCredentialTestRequest: ProviderCredentialTestRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProviderCredentialTestResponse> {
|
||||
return localVarFp.testProviderCredentials(provider, providerCredentialTestRequest, options).then((request) => request(axios, basePath));
|
||||
},
|
||||
/**
|
||||
* Tests every configured LLM provider once using the catalog probe model. Provider-level failures are returned in the response body with HTTP 200.
|
||||
* @summary Test Providers
|
||||
|
|
@ -473,18 +462,6 @@ export class ModelsApi extends BaseAPI {
|
|||
return ModelsApiFp(this.configuration).testProviderCredentials(provider, providerCredentialTestRequest, options).then((request) => request(this.axios, this.basePath));
|
||||
}
|
||||
|
||||
/**
|
||||
* Validates an LLM provider API key against the server\'s effective catalog without persisting it.
|
||||
* @summary Test Provider Credentials
|
||||
* @param {string} provider The provider identifier.
|
||||
* @param {ProviderCredentialTestRequest} providerCredentialTestRequest
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
public testProviderCredentials(provider: string, providerCredentialTestRequest: ProviderCredentialTestRequest, options?: RawAxiosRequestConfig) {
|
||||
return ModelsApiFp(this.configuration).testProviderCredentials(provider, providerCredentialTestRequest, options).then((request) => request(this.axios, this.basePath));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests every configured LLM provider once using the catalog probe model. Provider-level failures are returned in the response body with HTTP 200.
|
||||
* @summary Test Providers
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue