-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathomniai.gemspec
31 lines (23 loc) · 1 KB
/
omniai.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true
require_relative 'lib/omniai/version'
Gem::Specification.new do |spec|
spec.name = 'omniai'
spec.version = OmniAI::VERSION
spec.license = 'MIT'
spec.authors = ['Kevin Sylvestre']
spec.email = ['[email protected]']
spec.summary = 'A generalized framework for interacting with many AI services'
spec.description = "An interface for OpenAI's ChatGPT, Google's Gemini, Anthropic's Claude, Mistral's LeChat, etc."
spec.homepage = 'https://github.com/ksylvest/omniai'
spec.required_ruby_version = '>= 3.2.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/releases"
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.glob('{bin,lib,exe}/**/*') + %w[README.md Gemfile]
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'event_stream_parser'
spec.add_dependency 'http'
spec.add_dependency 'zeitwerk'
end