> ## Documentation Index
> Fetch the complete documentation index at: https://docs.memobase.io/llms.txt
> Use this file to discover all available pages before exploring further.

# SummaryBlob

Summary is for a already summary of user infomation.
Memobase will automatically understand and extract the summaries into structured profiles and events.

An example of SummaryBlob is below:

<Accordion title="Example to insert SummaryBlob">
  <CodeGroup>
    ```python Python theme={null}
    from memobase import SummaryBlob

    b = SummaryBlob(summary="User is a software engineer who works at Memobase....")


    u.insert(b)
    ```

    ```bash https theme={null}
    curl -X POST "$PROJECT_URL/api/v1/blobs/insert/{uid}" \
         -H "Authorization: Bearer $PROJECT_TOKEN" \
         -H "Content-Type: application/json" \
         -d '{ "blob_type": "summary", "blob_data": { "summary": "User is a software engineer who works at Memobase...." }}'
    ```
  </CodeGroup>
</Accordion>
