-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleva.gemspec
23 lines (19 loc) · 1.07 KB
/
leva.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative "lib/leva/version"
Gem::Specification.new do |spec|
spec.name = "leva"
spec.version = Leva::VERSION
spec.authors = [ "Kieran Klaassen" ]
spec.email = [ "[email protected]" ]
spec.homepage = "https://github.com/kieranklaassen/leva"
spec.summary = "Flexible Evaluation Framework for Language Models in Rails"
spec.description = "Leva is a Ruby on Rails framework for evaluating Language Models (LLMs) using ActiveRecord datasets. It provides a flexible structure for creating experiments, managing datasets, and implementing various evaluation logic."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/kieranklaassen/leva"
spec.metadata["changelog_uri"] = "https://github.com/kieranklaassen/leva/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 7.2.0"
spec.add_dependency "liquid", "~> 5.5.0"
end