ollama-find 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/README.md +23 -0
- data/Rakefile +31 -0
- data/changelog +7 -0
- data/exe/ollama-find +25 -0
- data/gitignore +8 -0
- data/lib/ollama-find/lookup_gguf_path.rb +98 -0
- data/lib/ollama-find/version.rb +5 -0
- data/lib/ollama-find.rb +25 -0
- data/rspec +2 -0
- metadata +110 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3852b0b7aa8d784ce62440069312aaeb3479013be0bf95bd6b681f6eccec2f64
|
4
|
+
data.tar.gz: 3dd15be963890f5904142f6d1b050c167a43cd914ea124803e06819f78100b4f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: faf0b9412b0105e14ae79de3d4df119e7451a68443d382a7d36544025fa0b2a9bb40224f6026fe6890e1fe0b94ad1f70a19db0a0760c24ca13c2642cd3061db6
|
7
|
+
data.tar.gz: 33d9079e414c0f9cf18f6d6563fff26e863f6b223cd08a330ffa97babb05dd32be7da08036fb301e5e74da63685b65744f7a07e14362647e393f944dbbab1e20
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# Ollama::Find
|
2
|
+
|
3
|
+
This is a CLI tool that allows you to quickly generate a path to a gguf file that's been pulled via Ollama.
|
4
|
+
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
```bash
|
9
|
+
gem install ollama-find
|
10
|
+
```
|
11
|
+
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
|
15
|
+
This guide assumes you've already installed [Ollama](https://ollama.com/download) and it's available on your command line.
|
16
|
+
|
17
|
+
```bash
|
18
|
+
# Pull a model to test with
|
19
|
+
ollama pull codegpt/replit-code-v1_5-3b
|
20
|
+
|
21
|
+
# Get the path to that model
|
22
|
+
ollama-find codegpt/replit-code-v1_5-3b
|
23
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "bundler/gem_tasks"
|
4
|
+
require "rspec/core/rake_task"
|
5
|
+
|
6
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
7
|
+
t.verbose = false
|
8
|
+
end
|
9
|
+
|
10
|
+
RSpec::Core::RakeTask.new(:integration) do |t|
|
11
|
+
t.verbose = false
|
12
|
+
t.pattern = "spec/**/*_int.rb"
|
13
|
+
end
|
14
|
+
|
15
|
+
# this is for running tests that you've marked current... eg: it 'should work', :current => true do
|
16
|
+
# I waffle between this work flow and the one defined in spec_helper.rb which uses focus: true
|
17
|
+
# which overrides the entire test suite... not better
|
18
|
+
RSpec::Core::RakeTask.new(:current) do |t|
|
19
|
+
t.verbose = false
|
20
|
+
t.pattern = 'spec/**/*_{spec,int}.rb'
|
21
|
+
t.rspec_opts = ['--tag current']
|
22
|
+
end
|
23
|
+
|
24
|
+
# alias for current
|
25
|
+
RSpec::Core::RakeTask.new(:c) do |t|
|
26
|
+
t.verbose = false
|
27
|
+
t.pattern = 'spec/**/*_{spec,int}.rb'
|
28
|
+
t.rspec_opts = ['--tag current']
|
29
|
+
end
|
30
|
+
|
31
|
+
task default: :spec
|
data/changelog
ADDED
data/exe/ollama-find
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "ollama-find"
|
4
|
+
|
5
|
+
arg0 = ARGV.count > 0 ? ARGV[0].chomp.strip : ''
|
6
|
+
arg1 = ARGV.count > 1 ? ARGV[1].chomp.strip : nil
|
7
|
+
|
8
|
+
if ARGV.count == 0 || arg0 == "help" || arg0 == "--help" || arg0 == "-h"
|
9
|
+
puts Ollama::Find.help
|
10
|
+
return
|
11
|
+
end
|
12
|
+
|
13
|
+
model_name = arg0
|
14
|
+
model_tag = arg1
|
15
|
+
|
16
|
+
# Check if model_tag is specified in first argument via ':' symbol
|
17
|
+
if arg0.include?(":")
|
18
|
+
model_name = arg0.split(":")[0]
|
19
|
+
model_tag = arg0.split(":")[1]
|
20
|
+
end
|
21
|
+
|
22
|
+
# if no model_tag, default to latest
|
23
|
+
model_tag = 'latest' if model_tag.nil?
|
24
|
+
|
25
|
+
puts Ollama::Find.main(model_name, model_tag)
|
data/gitignore
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
|
5
|
+
module Ollama
|
6
|
+
module Find
|
7
|
+
CLEAN_MODEL_DIR = "~/.ollama/models"
|
8
|
+
MODEL_DIR = File.expand_path(CLEAN_MODEL_DIR)
|
9
|
+
|
10
|
+
# Retrieves the file path to the GGUF model based on a given model name and optional tag.
|
11
|
+
#
|
12
|
+
# @param model_uri [String] Just the name of the model (e.g. "mymodel") or a full
|
13
|
+
# uri including registry and model (e.g. "registry.com/user/mymodel").
|
14
|
+
# @param model_tag [String] (Optional) The model version/tag. Defaults to "latest".
|
15
|
+
# @return [String, nil] The absolute path to the GGUF model file, or `nil` if the model digest
|
16
|
+
# is not found.
|
17
|
+
#
|
18
|
+
# @raise [RuntimeError] If the manifest file does not exist.
|
19
|
+
def self.lookup_gguf_path(model_uri, model_tag = nil)
|
20
|
+
model_tag = "latest" if model_tag.nil?
|
21
|
+
registry_path, model_name = split_registry_from_model_name(model_uri)
|
22
|
+
path_to_manifest = File.join(MODEL_DIR, "manifests", registry_path, model_name, model_tag)
|
23
|
+
|
24
|
+
if file_missing?(path_to_manifest)
|
25
|
+
msg = "Error: Manifest for #{model_name} could not be found. Checked #{clean_path(path_to_manifest)}"
|
26
|
+
if it_looks_like_you_needed_to_supply_a_tag_name?(path_to_manifest)
|
27
|
+
tagged_file = get_example_tagname(path_to_manifest)
|
28
|
+
msg += ".\n\nIf you meant to specify a version, try:\n $ #{command_name} #{model_uri} #{tagged_file}"
|
29
|
+
end
|
30
|
+
return msg
|
31
|
+
end
|
32
|
+
|
33
|
+
begin
|
34
|
+
manifest = JSON.parse(read_manifest(path_to_manifest))
|
35
|
+
rescue JSON::ParserError
|
36
|
+
return "Error: Unable to parse manifest at #{path_to_manifest}"
|
37
|
+
end
|
38
|
+
|
39
|
+
begin
|
40
|
+
digest = extract_model_digest(manifest)
|
41
|
+
rescue
|
42
|
+
return "Error: Unable to extract digest from manifest at #{path_to_manifest} for model_name #{model_name}"
|
43
|
+
end
|
44
|
+
|
45
|
+
File.join(CLEAN_MODEL_DIR, "blobs", digest)
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.command_name
|
49
|
+
"#{File.basename($0)} find"
|
50
|
+
end
|
51
|
+
|
52
|
+
def self.get_example_tagname(path)
|
53
|
+
dirpath = File.dirname(path)
|
54
|
+
File.basename(Dir.glob("#{dirpath}/*").first)
|
55
|
+
end
|
56
|
+
|
57
|
+
def self.it_looks_like_you_needed_to_supply_a_tag_name?(path)
|
58
|
+
Dir.exist?(File.dirname(path))
|
59
|
+
end
|
60
|
+
|
61
|
+
def self.clean_path(absolute_path)
|
62
|
+
absolute_path.sub(MODEL_DIR, CLEAN_MODEL_DIR)
|
63
|
+
end
|
64
|
+
|
65
|
+
def self.extract_model_digest(manifest)
|
66
|
+
manifest["layers"].select do |obj|
|
67
|
+
obj["mediaType"] == "application/vnd.ollama.image.model"
|
68
|
+
end.first["digest"].sub(':', '-')
|
69
|
+
end
|
70
|
+
|
71
|
+
def self.split_registry_from_model_name(model_name)
|
72
|
+
if model_name.split("/").first.include?(".")
|
73
|
+
return get_private_registry_model_name_and_registry(model_name)
|
74
|
+
end
|
75
|
+
if model_name.split("/").count > 1
|
76
|
+
subcatalog = model_name.split("/").first
|
77
|
+
return ["registry.ollama.ai/#{subcatalog}", model_name.sub("#{subcatalog}/", "")]
|
78
|
+
end
|
79
|
+
["registry.ollama.ai/library", model_name]
|
80
|
+
end
|
81
|
+
|
82
|
+
def self.get_private_registry_model_name_and_registry(model_name)
|
83
|
+
folder_array = model_name.split("/")
|
84
|
+
model_name = folder_array.pop
|
85
|
+
registry_path = folder_array.join("/")
|
86
|
+
[registry_path, model_name]
|
87
|
+
end
|
88
|
+
|
89
|
+
def self.read_manifest(path_to_manifest)
|
90
|
+
File.read(File.expand_path(path_to_manifest))
|
91
|
+
end
|
92
|
+
|
93
|
+
def self.file_missing?(path)
|
94
|
+
!File.exist?(path)
|
95
|
+
end
|
96
|
+
|
97
|
+
end
|
98
|
+
end
|
data/lib/ollama-find.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
require "ollama-find/version"
|
2
|
+
require "ollama-find/lookup_gguf_path"
|
3
|
+
|
4
|
+
|
5
|
+
module Ollama
|
6
|
+
module Find
|
7
|
+
|
8
|
+
def self.main(model_uri, model_tag = nil)
|
9
|
+
lookup_gguf_path(model_uri, model_tag)
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.help
|
13
|
+
msg = <<-EOF.strip
|
14
|
+
ollama::find
|
15
|
+
A CLI tool that allows you to quickly generate a path to a gguf file that's
|
16
|
+
been pulled via Ollama.
|
17
|
+
|
18
|
+
Usage:
|
19
|
+
$ ollama-find llama3
|
20
|
+
~/.ollama/models/blobs/sha256-6a0746a1ec1aef3e7ec53868f220ff6e389f6f8ef87a01d77c96807de94ca2aa
|
21
|
+
EOF
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
data/rspec
ADDED
metadata
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ollama-find
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- TheNotary
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: bundler
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '2.6'
|
19
|
+
type: :development
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '2.6'
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: rake
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '13.0'
|
33
|
+
type: :development
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '13.0'
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: rspec
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
type: :development
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: pry
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
type: :development
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
email:
|
69
|
+
- no@email.plz
|
70
|
+
executables:
|
71
|
+
- ollama-find
|
72
|
+
extensions: []
|
73
|
+
extra_rdoc_files: []
|
74
|
+
files:
|
75
|
+
- CODE_OF_CONDUCT.md
|
76
|
+
- README.md
|
77
|
+
- Rakefile
|
78
|
+
- changelog
|
79
|
+
- exe/ollama-find
|
80
|
+
- gitignore
|
81
|
+
- lib/ollama-find.rb
|
82
|
+
- lib/ollama-find/lookup_gguf_path.rb
|
83
|
+
- lib/ollama-find/version.rb
|
84
|
+
- rspec
|
85
|
+
homepage: https://github.com/TheNotary/ollama-find
|
86
|
+
licenses:
|
87
|
+
- MIT
|
88
|
+
metadata:
|
89
|
+
homepage_uri: https://github.com/TheNotary/ollama-find
|
90
|
+
source_code_uri: https://github.com/TheNotary/ollama-find
|
91
|
+
changelog_uri: https://github.com/TheNotary/ollama-find
|
92
|
+
rdoc_options: []
|
93
|
+
require_paths:
|
94
|
+
- lib
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: 3.0.0
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
requirements: []
|
106
|
+
rubygems_version: 3.6.2
|
107
|
+
specification_version: 4
|
108
|
+
summary: A CLI tool that helps you quickly generate the path to a gguf file cached
|
109
|
+
by Ollama
|
110
|
+
test_files: []
|