# frozen_string_literal: true # Boxcars is a framework for running a series of tools to get an answer to a question. module Boxcars # A Boxcar that interprets a prompt and executes ruby code to do math class Calculator < EngineBoxcar # the description of this engine boxcar CALCDESC = "useful for when you need to answer questions about math" attr_accessor :input_key # @param engine [Boxcars::Engine] The engine to user for this boxcar. Can be inherited from a train if nil. # @param prompt [Boxcars::Prompt] The prompt to use for this boxcar. Defaults to built-in prompt. # @param input_key [Symbol] The key to use for the input. Defaults to :question. # @param output_key [Symbol] The key to use for the output. Defaults to :answer. # @param kwargs [Hash] Any other keyword arguments to pass to the parent class. def initialize(engine: nil, prompt: nil, input_key: :question, output_key: :answer, **kwargs) # def initialize(engine:, prompt: my_prompt, input_key: :question, output_key: :answer, **kwargs) @input_key = input_key the_prompt = prompt || my_prompt super(name: kwargs[:name] || "Calculator", description: kwargs[:description] || CALCDESC, engine: engine, prompt: the_prompt, output_key: output_key) end # the prompt input keys def input_keys [input_key] end # the output keys def output_keys [output_key] end # call the calculator # @param inputs [Hash] The inputs to the boxcar. # @return [Hash] The outputs from the boxcar. def call(inputs:) t = predict(question: inputs[input_key], stop: ["```output"]).strip answer = get_answer(t) puts answer.colorize(:magenta) { output_key => answer } end private def get_embedded_ruby_answer(text) code = text[8..-4].split("```").first.strip ruby_executor = Boxcars::RubyREPL.new ruby_executor.call(code: code).strip end def get_answer(text) case text when /^```ruby/ get_embedded_ruby_answer(text) when /^Answer:/ text else raise Boxcars::Error "Unknown format from engine: #{text}" end end # our template # rubocop:disable Style/RedundantHeredocDelimiterQuotes TEMPLATE = <<~'IPT' You are GPT-3, and you can't do math. You can do basic math, and your memorization abilities are impressive, but you can't do any complex calculations that a human could not do in their head. You also have an annoying tendency to just make up highly specific, but wrong, answers. So we hooked you up to a Ruby 3 kernel, and now you can execute ruby code. If anyone gives you a hard math problem, just use this format and we’ll take care of the rest: Question: ${{Question with hard calculation.}} ```ruby ${{Code that prints what you need to know}} ``` ```output ${{Output of your code}} ``` Answer: ${{Answer}} Otherwise, use this simpler format: Question: ${{Question without hard calculation}} Answer: ${{Answer}} Begin. Question: What is 37593 * 67? ```ruby puts(37593 * 67) ``` ```output 2518731 ``` Answer: 2518731 Question: what is 2518731 + 0? Answer: 2518731 Question: %s IPT # rubocop:enable Style/RedundantHeredocDelimiterQuotes # The prompt to use for the engine. def my_prompt @my_prompt ||= Prompt.new(input_variables: [:question], template: TEMPLATE) end end end