diff --git a/enterprise/lib/captain/response_schema.rb b/enterprise/lib/captain/response_schema.rb new file mode 100644 index 000000000..26a6a47a1 --- /dev/null +++ b/enterprise/lib/captain/response_schema.rb @@ -0,0 +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 +end