Skip to content
Tracon

MemorySettings

← All HTTP schemas

Determines the memory providers bound to an agent.

Shape: object

Property Required Type Description Rules
enableFileMemory no boolean Gets a value that turns on file-based memory. It reads whichever AgentFileStore is registered; the built-in store keeps files in memory, so they do not survive a restart unless you register your own.
enableTodo no boolean Gets a value that turns on todo tracking.
enableTextSearch no boolean Gets a value that turns on text search over the file store. The search runs over the registered AgentFileStore, which is the in-memory store unless you register another one.
enableVectorSearch no boolean Gets a value that turns on the search_knowledge tool. PostgreSQL only: the single concrete implementation of IVectorSearchStore lives in Tracon.PostgreSql. When this flag is turned on while another provider is registered, the build stops with TraconCompilationException; it does not silently return an empty result.
vectorCollection no string Gets the name of the collection to search. The agent name is used when it is empty.