From e6f0374cc8844d4a053db4e68feee23ffc793d73 Mon Sep 17 00:00:00 2001 From: icebaker Date: Thu, 14 Dec 2023 22:49:06 -0300 Subject: adding support for google gemini --- logic/providers/google/tokens.rb | 16 +++++++++++ logic/providers/google/tools.rb | 60 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 logic/providers/google/tokens.rb create mode 100644 logic/providers/google/tools.rb (limited to 'logic/providers/google') diff --git a/logic/providers/google/tokens.rb b/logic/providers/google/tokens.rb new file mode 100644 index 0000000..3d5492f --- /dev/null +++ b/logic/providers/google/tokens.rb @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +require 'openai' + +module NanoBot + module Logic + module Google + module Tokens + def self.apply_policies!(_cartridge, payload) + payload[:contents] = payload[:contents].map { |message| message.except(:_meta) } + payload + end + end + end + end +end diff --git a/logic/providers/google/tools.rb b/logic/providers/google/tools.rb new file mode 100644 index 0000000..e1396d6 --- /dev/null +++ b/logic/providers/google/tools.rb @@ -0,0 +1,60 @@ +# frozen_string_literal: true + +require 'json' +require 'babosa' + +require_relative '../../helpers/hash' + +module NanoBot + module Logic + module Google + module Tools + def self.prepare(cartridge, tools) + applies = [] + + tools = Marshal.load(Marshal.dump(tools)) + + tools.each do |tool| + tool = Helpers::Hash.symbolize_keys(tool) + + cartridge.each do |candidate| + candidate_key = candidate[:name].to_slug.normalize.gsub('-', '_') + tool_key = tool[:functionCall][:name].to_slug.normalize.gsub('-', '_') + + next unless candidate_key == tool_key + + source = {} + + source[:clojure] = candidate[:clojure] if candidate[:clojure] + source[:fennel] = candidate[:fennel] if candidate[:fennel] + source[:lua] = candidate[:lua] if candidate[:lua] + + applies << { + label: candidate[:name], + name: tool[:functionCall][:name], + type: 'function', + parameters: tool[:functionCall][:args], + source: + } + end + end + + raise 'missing tool' if applies.size != tools.size + + applies + end + + def self.adapt(cartridge) + output = { + name: cartridge[:name], + description: cartridge[:description] + } + + output[:parameters] = (cartridge[:parameters] || { type: 'object', properties: {} }) + + output + end + end + end + end +end -- cgit v1.2.3