-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_llm-evals.gemspec
More file actions
26 lines (22 loc) · 1015 Bytes
/
ruby_llm-evals.gemspec
File metadata and controls
26 lines (22 loc) · 1015 Bytes
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
require_relative "lib/ruby_llm/evals/version"
Gem::Specification.new do |spec|
spec.name = "ruby_llm-evals"
spec.version = RubyLLM::Evals::VERSION
spec.authors = [ "Patricio Mac Adden", "Fernando Martinez" ]
spec.email = [ "patricio.macadden@sinaptia.dev", "fernando.martinez@sinaptia.dev" ]
spec.homepage = "https://github.com/sinaptia/ruby_llm-evals"
spec.summary = "LLM evaluation engine for Rails."
spec.description = "LLM evaluation engine for Rails."
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "importmap-rails"
spec.add_dependency "liquid"
spec.add_dependency "rails", ">= 7.2.0"
spec.add_dependency "ruby_llm", "~> 1.12"
spec.add_dependency "ruby_llm-schema"
spec.add_dependency "stimulus-rails"
spec.add_dependency "turbo-rails"
end