Compare commits

...

1 Commits

Author SHA1 Message Date
Aiden Cline ea34bd7146 fix: agent value passed to chat.params and chat.headers hooks was not a string 2026-03-29 23:46:50 -05:00
+2 -2
View File
@@ -152,7 +152,7 @@ export namespace LLM {
"chat.params",
{
sessionID: input.sessionID,
agent: input.agent,
agent: input.agent.name,
model: input.model,
provider,
message: input.user,
@@ -171,7 +171,7 @@ export namespace LLM {
"chat.headers",
{
sessionID: input.sessionID,
agent: input.agent,
agent: input.agent.name,
model: input.model,
provider,
message: input.user,