An attachement is a file that has been generated or processed by a Step.

Example of a PDF attachement

Create an attachment:

attachment = await client.api.create_attachment(
    thread_id="<THREAD_UUID>",
    step_id="<STEP_UUID>"
    name="my_attachment",
    content_type="text/plain",
    content="Hello world",
)