import os
from brainbase_labs import BrainbaseLabs
client = BrainbaseLabs(
api_key=os.environ.get("BRAINBASE_LABS_API_KEY"),# This is the default and can be omitted)
voice_deployment = client.workers.deployments.voice.update(
deployment_id="deploymentId",
worker_id="workerId",)print(voice_deployment.id)
import os
from brainbase_labs import BrainbaseLabs
client = BrainbaseLabs(
api_key=os.environ.get("BRAINBASE_LABS_API_KEY"),# This is the default and can be omitted)
voice_deployment = client.workers.deployments.voice.update(
deployment_id="deploymentId",
worker_id="workerId",)print(voice_deployment.id)