Langbase integration (AI, Data). Imported from open-connector.
https://api.langbase.com/v1/memory
/v1/memory
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | The memory name. |
| description | string | optional | A short description of the memory. |
| embedding_model | string | optional | The embedding model to use for the memory. |
| chunk_size | integer | optional | The maximum number of characters in a chunk. |
| chunk_overlap | integer | optional | The number of overlapping characters between adjacent chunks. |
| top_k | integer | optional | The default number of chunks to return during retrieval. |
/v1/memory/{memoryName}
| Param | Type | Required | Description |
|---|---|---|---|
| memoryName | string | required | The Langbase memory name to delete. |
/v1/memory/retrieve
| Param | Type | Required | Description |
|---|---|---|---|
| query | string | required | The search query used to retrieve similar chunks. |
| memory | array | required | The Langbase memories to search. |
| topK | integer | optional | The number of top chunks to return. |