fix: address review feedback — pin version, enable JWT

- Pin hermes-paperclip-adapter to exact version 0.1.1 (was ^0.1.0).
  Avoids auto-pulling potentially breaking patches from a 0.x package.
- Enable supportsLocalAgentJwt (was false). The adapter uses
  buildPaperclipEnv which passes the JWT to the child process,
  matching the pattern of all other local adapters.
This commit is contained in:
teknium1
2026-03-13 20:26:27 -07:00
parent e84c0e8df2
commit 93faf6d361
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ const hermesLocalAdapter: ServerAdapterModule = {
testEnvironment: hermesTestEnvironment,
sessionCodec: hermesSessionCodec,
models: hermesModels,
supportsLocalAgentJwt: false,
supportsLocalAgentJwt: true,
agentConfigurationDoc: hermesAgentConfigurationDoc,
};