💾 feat: Custom Endpoint Support for Memory LLM Config (#11214)

* feat: add support for designating custom endpoints to use with memory tool

* test: add tests for header resolution in processMemory

* chore: address comments
This commit is contained in:
Dustin Healy 2026-01-06 08:25:07 -08:00 committed by GitHub
parent 04fd231b61
commit b5aa38ff33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 314 additions and 1 deletions

View file

@ -676,6 +676,7 @@ class AgentClient extends BaseClient {
getFormattedMemories: db.getFormattedMemories,
},
res: this.options.res,
user: createSafeUser(this.options.req.user),
});
this.processMemory = processMemory;