From 176e09cde72eab8a364ec269e6a7e6fce737f8d5 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 4 Aug 2025 18:32:58 +0530 Subject: [PATCH] fix: schema --- enterprise/lib/captain/response_schema.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enterprise/lib/captain/response_schema.rb b/enterprise/lib/captain/response_schema.rb index 26a6a47a1..cdeee37b4 100644 --- a/enterprise/lib/captain/response_schema.rb +++ b/enterprise/lib/captain/response_schema.rb @@ -1,4 +1,4 @@ class Captain::ResponseSchema < RubyLLM::Schema string :response, description: 'The message to send to the user' - string :reasoning, description: "Agent's thought process", required: false + string :reasoning, description: "Agent's thought process" end