Skip to content

Commit

Permalink
chore(assistants_web): fix from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ezawadski committed Jan 15, 2025
1 parent a6b3e2f commit 73a6e70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/assistants_web/src/cohere-client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ export class CohereClient {
return this.cohereService.deployment.listDeploymentsV1DeploymentsGet({ all });
}

public updateDeploymentEnvVariables(requestBody: UpdateDeploymentEnv, name: string) {
public updateDeploymentEnvVariables(requestBody: UpdateDeploymentEnv, deploymentId: string) {
return this.cohereService.deployment.updateConfigV1DeploymentsDeploymentIdUpdateConfigPost({
deploymentId: name,
deploymentId: deploymentId,
requestBody,
});
}
Expand Down

0 comments on commit 73a6e70

Please sign in to comment.