Skip to main content
POST
/
threads
/
async
Start Thread
curl --request POST \
  --url https://analyst.heyhumm.ai/threads/async \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "organization_id": "<string>",
  "query": "",
  "thread_id": "<string>",
  "llm_config": {
    "auto_config": "fast",
    "model": "<string>",
    "reasoning_effort": "none",
    "fallback_models": [
      "<string>"
    ],
    "provider": {},
    "verbosity": "low",
    "backend_streaming": true
  },
  "user_timezone": "<string>",
  "images": [
    {
      "data_url": "<string>",
      "mime_type": "image/png",
      "detail": "auto"
    }
  ],
  "file_uploads": [
    {
      "cache_key": "<string>",
      "filename": "<string>",
      "columns": [
        {
          "name": "<string>",
          "dtype": "<string>"
        }
      ],
      "row_count": 123,
      "sheet_name": "<string>",
      "preview_rows": [
        {}
      ]
    }
  ],
  "force_architecture": "monolith",
  "source": "typed",
  "idempotency_key": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://heyhumm.ai/docs/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

internal_user_id
string

Override user ID for system operations (optional)

Body

application/json

Request model for async chat endpoint.

organization_id
string
required
query
string
default:""
thread_id
string | null
llm_config
ModelConfig · object

Configuration for model selection and reasoning effort.

user_timezone
string | null
images
ImageInput · object[] | null
file_uploads
FileUploadMetadata · object[] | null
force_architecture
enum<string> | null
Available options:
monolith,
sandbox,
deepagents
source
enum<string> | null
Available options:
typed,
suggestion
idempotency_key
string | null

Response

Successful Response