Join us May 13th & May 14th at Interrupt, the Agent Conference by LangChain. Buy tickets >
curl --request POST \
--url https://api.smith.langchain.com/v1/deepagents/threads \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"agent_id": "11111111-1111-1111-1111-111111111111",
"options": {
"test_run": false,
"skip_memory_write_protection": false
}
}
'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "idle",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Create a thread bound to a Managed Deep Agent. Use the returned thread ID to start runs.
curl --request POST \
--url https://api.smith.langchain.com/v1/deepagents/threads \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"agent_id": "11111111-1111-1111-1111-111111111111",
"options": {
"test_run": false,
"skip_memory_write_protection": false
}
}
'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "idle",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}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.
Was this page helpful?