PUT
/
api
/
workers
/
{workerId}
/
tests
/
{testId}
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
)
client.workers.tests.update(
    test_id="testId",
    worker_id="workerId",
)

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required
testId
string
required

Body

application/json
name
string
description
string
checkpoints
object[]
testMode
string
systemPrompt
string
flowId
string

Response

200

Test updated successfully