Skip to main content
POST
/
api
/
v1
/
datasets
/
playground_experiment
/
batch
Error
A valid request URL is required to generate request examples
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.langchain.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Body

application/json
manifest
any
required
secrets
Secrets · object
required
options
RunnableConfig · object
required

Configuration for a Runnable.

!!! note Custom values

The `TypedDict` has `total=False` set intentionally to:

- Allow partial configs to be created and merged together via `merge_configs`
- Support config propagation from parent to child runnables via
    `var_child_runnable_config` (a `ContextVar` that automatically passes
    config down the call stack without explicit parameter passing), where
    configs are merged rather than replaced

!!! example

    ```python
    # Parent sets tags
    chain.invoke(input, config={"tags": ["parent"]})
    # Child automatically inherits and can add:
    # ensure_config({"tags": ["child"]}) -> {"tags": ["parent", "child"]}
    ```
project_name
string
required
dataset_id
string<uuid>
required
run_id
string | null
repo_id
string | null
tools
any[] | null
tool_choice
string | null
parallel_tool_calls
boolean | null
repo_handle
string | null
owner
string | null
commit
string | null
evaluator_rules
string<uuid>[] | null
requests_per_second
integer | null
use_or_fallback_to_workspace_secrets
boolean
default:false
runner_context
enum<string> | null
default:langsmith_ui
Available options:
langsmith_ui,
langsmith_align_evals
dataset_splits
string[] | null
repetitions
integer
default:1
Required range: 1 <= x <= 30
metadata
Metadata · object
batch_size
integer | null
Required range: 1 <= x <= 100

Response

Successful Response