ollama_chat 0.0.35 → 0.0.37
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 +4 -4
- data/CHANGES.md +30 -0
- data/README.md +5 -1
- data/Rakefile +6 -4
- data/docker-compose.yml +1 -1
- data/lib/ollama_chat/chat.rb +11 -7
- data/lib/ollama_chat/dialog.rb +5 -2
- data/lib/ollama_chat/env_config.rb +15 -2
- data/lib/ollama_chat/ollama_chat_config.rb +2 -2
- data/lib/ollama_chat/version.rb +1 -1
- data/ollama_chat.gemspec +5 -6
- metadata +6 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a8737b3ea415deaf19cbb41d63443f0fc2c3b6df1e5ae4e69f4043384a098623
|
|
4
|
+
data.tar.gz: 70d915252d3c56a408b49d896f90e3a1373facd6eb7333365abf87c371435b6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e61bbeb22039ef2e511ec1ad73f7e88f0cfb51d0ce2dbbc22633bed45f37fba958f768e02452894cbf0ba167db3e7705181f16962ecd8449f0b1d7046b7f2c78
|
|
7
|
+
data.tar.gz: b914199f030b8a7472c7602a8b6fe119bc49fc587e56a1ae8d808388e99920dd16a4908516c7c568a1bb8c68e4766e28ad083fa2896621788dc15beb8250c299
|
data/CHANGES.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 2025-10-31 v0.0.37
|
|
4
|
+
|
|
5
|
+
- Refactored system prompt selection logic to use `case`/`when` statement
|
|
6
|
+
instead of `if`/`elsif` for improved readability
|
|
7
|
+
- Maintained same functionality for regex pattern matching with `/\A\?(.+)\z/`
|
|
8
|
+
pattern
|
|
9
|
+
- Handled special case with `?` argument to match any character with `/./` regex
|
|
10
|
+
- Updated `amatch` dependency version constraint from `~> 0.4.1` to `~> 0.4` in
|
|
11
|
+
`Rakefile` and `ollama_chat.gemspec`
|
|
12
|
+
- Updated `rubygems` version requirement from **3.6.9** to **3.7.2** in
|
|
13
|
+
`ollama_chat.gemspec`
|
|
14
|
+
|
|
15
|
+
## 2025-10-11 v0.0.36
|
|
16
|
+
|
|
17
|
+
- Added `openssl-dev` package to apk packages in Dockerfile
|
|
18
|
+
- Replaced explicit `_1` parameter syntax with implicit `_1` syntax for
|
|
19
|
+
compatibility with older Ruby versions
|
|
20
|
+
- Removed `require 'xdg'` statement from `chat.rb`
|
|
21
|
+
- Removed `xdg` gem dependency and implemented direct XDG directory usage
|
|
22
|
+
- Added documentation link to README with a link to the GitHub.io documentation
|
|
23
|
+
site
|
|
24
|
+
- Introduced GitHub Actions workflow for static content deployment to GitHub
|
|
25
|
+
Pages
|
|
26
|
+
- Updated `gem_hadar` development dependency to version **2.8**
|
|
27
|
+
- Reordered menu options in dialog prompts to place `[EXIT]` first
|
|
28
|
+
- Corrected YARD documentation guidelines for `initialize` methods
|
|
29
|
+
- Updated documentation comments with consistent formatting
|
|
30
|
+
- Updated Redis (ValKey) image version from **8.1.1** to **8.1.3**
|
|
31
|
+
- Removed deprecated `REDIS_EXPRING_URL` environment variable from `.envrc`
|
|
32
|
+
|
|
3
33
|
## 2025-09-18 v0.0.35
|
|
4
34
|
|
|
5
35
|
- Replaced ad-hoc ENV handling with `const_conf` gem for structured
|
data/README.md
CHANGED
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
**ollama_chat** is a chat client, that can be used to connect to an ollama
|
|
6
6
|
server and enter chat conversations with the LLMs provided by it.
|
|
7
7
|
|
|
8
|
+
## Documentation
|
|
9
|
+
|
|
10
|
+
Complete API documentation is available at: [GitHub.io](https://flori.github.io/ollama_chat/)
|
|
11
|
+
|
|
8
12
|
## Installation (gem)
|
|
9
13
|
|
|
10
14
|
To install **ollama_chat**, you can type
|
|
@@ -31,7 +35,7 @@ The following environment variables can be used to configure behavior:
|
|
|
31
35
|
- `PAGER` - Default pager for output
|
|
32
36
|
- `REDIS_URL` - Redis connection URL for caching
|
|
33
37
|
- `REDIS_EXPIRING_URL` - Redis connection URL for expiring data
|
|
34
|
-
- `OLLAMA_CHAT_HISTORY` - Chat history filename (default:
|
|
38
|
+
- `OLLAMA_CHAT_HISTORY` - Chat history filename (default: `$XDG_CACHE_HOME/ollama_chat/history.json`)
|
|
35
39
|
- `OLLAMA_CHAT_DEBUG` - Debug mode toggle (1 = enabled)
|
|
36
40
|
- `DIFF_TOOL` - Tool for diff operations (default: `vimdiff`)
|
|
37
41
|
- `OLLAMA_SEARXNG_URL` - SearxNG search endpoint URL
|
data/Rakefile
CHANGED
|
@@ -24,8 +24,7 @@ GemHadar do
|
|
|
24
24
|
'.yardoc', 'doc', 'tags', 'corpus', 'coverage', '/config/searxng/*',
|
|
25
25
|
'.starscope.db', 'cscope.out'
|
|
26
26
|
package_ignore '.all_images.yml', '.tool-versions', '.gitignore', 'VERSION',
|
|
27
|
-
'.rspec', '.github',
|
|
28
|
-
|
|
27
|
+
'.rspec', '.github', '.contexts', '.envrc', '.yardopts'
|
|
29
28
|
|
|
30
29
|
readme 'README.md'
|
|
31
30
|
|
|
@@ -33,6 +32,10 @@ GemHadar do
|
|
|
33
32
|
|
|
34
33
|
executables << 'ollama_chat' << 'ollama_chat_send'
|
|
35
34
|
|
|
35
|
+
github_workflows(
|
|
36
|
+
'static.yml' => {}
|
|
37
|
+
)
|
|
38
|
+
|
|
36
39
|
dependency 'excon', '~> 1.0'
|
|
37
40
|
dependency 'ollama-ruby', '~> 1.7'
|
|
38
41
|
dependency 'documentrix', '~> 0.0', '>= 0.0.2'
|
|
@@ -42,12 +45,11 @@ GemHadar do
|
|
|
42
45
|
dependency 'redis', '~> 5.0'
|
|
43
46
|
dependency 'mime-types', '~> 3.0'
|
|
44
47
|
dependency 'reverse_markdown', '~> 3.0'
|
|
45
|
-
dependency 'xdg'
|
|
46
48
|
dependency 'kramdown-ansi', '~> 0.2'
|
|
47
49
|
dependency 'complex_config', '~> 0.22', '>= 0.22.2'
|
|
48
50
|
dependency 'tins', '~> 1.41'
|
|
49
51
|
dependency 'search_ui', '~> 0.0'
|
|
50
|
-
dependency 'amatch', '~> 0.4
|
|
52
|
+
dependency 'amatch', '~> 0.4'
|
|
51
53
|
dependency 'pdf-reader', '~> 2.0'
|
|
52
54
|
dependency 'csv', '~> 3.0'
|
|
53
55
|
dependency 'const_conf', '~> 0.3'
|
data/docker-compose.yml
CHANGED
data/lib/ollama_chat/chat.rb
CHANGED
|
@@ -13,7 +13,6 @@ require 'nokogiri'
|
|
|
13
13
|
require 'rss'
|
|
14
14
|
require 'pdf/reader'
|
|
15
15
|
require 'csv'
|
|
16
|
-
require 'xdg'
|
|
17
16
|
require 'socket'
|
|
18
17
|
require 'shellwords'
|
|
19
18
|
|
|
@@ -143,7 +142,7 @@ class OllamaChat::Chat
|
|
|
143
142
|
# Documentrix::Documents instance.
|
|
144
143
|
#
|
|
145
144
|
# @return [Documentrix::Documents] A Documentrix::Documents object containing
|
|
146
|
-
#
|
|
145
|
+
# all documents associated with this instance
|
|
147
146
|
attr_reader :documents
|
|
148
147
|
|
|
149
148
|
# Returns the messages set for this object, initializing it lazily if needed.
|
|
@@ -153,7 +152,7 @@ class OllamaChat::Chat
|
|
|
153
152
|
# OllamaChat::MessageList instance.
|
|
154
153
|
#
|
|
155
154
|
# @return [OllamaChat::MessageList] A MessageList object containing all
|
|
156
|
-
#
|
|
155
|
+
# messages associated with this instance
|
|
157
156
|
attr_reader :messages
|
|
158
157
|
|
|
159
158
|
# Returns the links set for this object, initializing it lazily if needed.
|
|
@@ -202,6 +201,11 @@ class OllamaChat::Chat
|
|
|
202
201
|
|
|
203
202
|
private
|
|
204
203
|
|
|
204
|
+
# Handles user input commands and processes chat interactions.
|
|
205
|
+
#
|
|
206
|
+
# @param content [String] The input content to process
|
|
207
|
+
# @return [Symbol, String, nil] Returns a symbol indicating next action,
|
|
208
|
+
# the content to be processed, or nil for no action needed
|
|
205
209
|
def handle_input(content)
|
|
206
210
|
case content
|
|
207
211
|
when %r(^/copy$)
|
|
@@ -470,7 +474,7 @@ class OllamaChat::Chat
|
|
|
470
474
|
# specified parameter.
|
|
471
475
|
#
|
|
472
476
|
# @param what [ String, nil ] the type of data to clear, defaults to
|
|
473
|
-
#
|
|
477
|
+
# 'messages' if nil
|
|
474
478
|
def clean(what)
|
|
475
479
|
case what
|
|
476
480
|
when 'messages', nil
|
|
@@ -647,7 +651,7 @@ class OllamaChat::Chat
|
|
|
647
651
|
# configured document collection.
|
|
648
652
|
#
|
|
649
653
|
# @return [ Documentrix::Documents, NULL ] the initialized document
|
|
650
|
-
#
|
|
654
|
+
# collection if embedding is enabled, otherwise NULL
|
|
651
655
|
def setup_documents
|
|
652
656
|
if embedding.on?
|
|
653
657
|
@embedding_model = config.embedding.model.name
|
|
@@ -729,7 +733,7 @@ class OllamaChat::Chat
|
|
|
729
733
|
# expiring keys if a Redis URL is configured.
|
|
730
734
|
#
|
|
731
735
|
# @return [ Documentrix::Documents::RedisCache, nil ] the configured Redis
|
|
732
|
-
#
|
|
736
|
+
# cache instance or nil if no URL is set.
|
|
733
737
|
def setup_cache
|
|
734
738
|
if url = config.redis.expiring.url?
|
|
735
739
|
ex = config.redis.expiring.ex?.to_i
|
|
@@ -748,7 +752,7 @@ class OllamaChat::Chat
|
|
|
748
752
|
# This method exits the program after handling the configuration error
|
|
749
753
|
#
|
|
750
754
|
# @param exception [ Exception ] the exception that occurred while reading
|
|
751
|
-
#
|
|
755
|
+
# the config file
|
|
752
756
|
def fix_config(exception)
|
|
753
757
|
save_conversation('backup.json')
|
|
754
758
|
STDOUT.puts "When reading the config file, a #{exception.class} "\
|
data/lib/ollama_chat/dialog.rb
CHANGED
|
@@ -149,8 +149,11 @@ module OllamaChat::Dialog
|
|
|
149
149
|
# @param system [ String ] the system prompt identifier or pattern to
|
|
150
150
|
# search for
|
|
151
151
|
def change_system_prompt(default, system: nil)
|
|
152
|
-
selector =
|
|
152
|
+
selector = case system
|
|
153
|
+
when /\A\?(.+)\z/
|
|
153
154
|
Regexp.new($1)
|
|
155
|
+
when ??
|
|
156
|
+
/./
|
|
154
157
|
else
|
|
155
158
|
Regexp.new(system.to_s)
|
|
156
159
|
end
|
|
@@ -158,7 +161,7 @@ module OllamaChat::Dialog
|
|
|
158
161
|
if prompts.size == 1
|
|
159
162
|
system = config.system_prompts.send(prompts.first)
|
|
160
163
|
else
|
|
161
|
-
prompts.unshift('[
|
|
164
|
+
prompts.unshift('[NEW]').unshift('[EXIT]')
|
|
162
165
|
chosen = OllamaChat::Utils::Chooser.choose(prompts)
|
|
163
166
|
system =
|
|
164
167
|
case chosen
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
require 'const_conf'
|
|
2
|
+
require 'pathname'
|
|
2
3
|
|
|
3
4
|
module OllamaChat
|
|
4
5
|
module EnvConfig
|
|
@@ -7,6 +8,18 @@ module OllamaChat
|
|
|
7
8
|
description 'Environment config for OllamaChat'
|
|
8
9
|
prefix ''
|
|
9
10
|
|
|
11
|
+
XDG_CONFIG_HOME = set do
|
|
12
|
+
description 'XDG Configuration directory path'
|
|
13
|
+
default { '~/.config' }
|
|
14
|
+
decode { Pathname.new(_1) + 'ollama_chat' }
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
XDG_CACHE_HOME = set do
|
|
18
|
+
description 'XDG Cache directory path'
|
|
19
|
+
default { '~/.cache' }
|
|
20
|
+
decode { Pathname.new(_1) + 'ollama_chat' }
|
|
21
|
+
end
|
|
22
|
+
|
|
10
23
|
PAGER = set do
|
|
11
24
|
description 'Pager command to use in case terminal lines are exceeded by output'
|
|
12
25
|
|
|
@@ -73,7 +86,7 @@ module OllamaChat
|
|
|
73
86
|
|
|
74
87
|
DEBUG = set do
|
|
75
88
|
description 'Enable debugging for chat client'
|
|
76
|
-
decode {
|
|
89
|
+
decode { _1.to_i == 1 }
|
|
77
90
|
default 0
|
|
78
91
|
end
|
|
79
92
|
|
|
@@ -92,7 +105,7 @@ module OllamaChat
|
|
|
92
105
|
|
|
93
106
|
HISTORY = set do
|
|
94
107
|
description 'File to save the chat history in'
|
|
95
|
-
default '
|
|
108
|
+
default XDG_CACHE_HOME + 'history.json'
|
|
96
109
|
end
|
|
97
110
|
end
|
|
98
111
|
end
|
|
@@ -87,7 +87,7 @@ class OllamaChat::OllamaChatConfig
|
|
|
87
87
|
# @return [ Pathname ] the pathname object representing the configuration
|
|
88
88
|
# directory
|
|
89
89
|
def config_dir_path
|
|
90
|
-
|
|
90
|
+
OllamaChat::EnvConfig::XDG_CONFIG_HOME
|
|
91
91
|
end
|
|
92
92
|
|
|
93
93
|
# The cache_dir_path method returns the path to the ollama_chat cache
|
|
@@ -95,7 +95,7 @@ class OllamaChat::OllamaChatConfig
|
|
|
95
95
|
#
|
|
96
96
|
# @return [ Pathname ] the pathname object representing the cache directory path
|
|
97
97
|
def cache_dir_path
|
|
98
|
-
|
|
98
|
+
OllamaChat::EnvConfig::XDG_CACHE_HOME
|
|
99
99
|
end
|
|
100
100
|
|
|
101
101
|
# The database_path method constructs the full path to the documents database
|
data/lib/ollama_chat/version.rb
CHANGED
data/ollama_chat.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: ollama_chat 0.0.
|
|
2
|
+
# stub: ollama_chat 0.0.37 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "ollama_chat".freeze
|
|
6
|
-
s.version = "0.0.
|
|
6
|
+
s.version = "0.0.37".freeze
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|
|
@@ -18,13 +18,13 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
s.licenses = ["MIT".freeze]
|
|
19
19
|
s.rdoc_options = ["--title".freeze, "OllamaChat - A command-line interface (CLI) for interacting with an Ollama AI model.".freeze, "--main".freeze, "README.md".freeze]
|
|
20
20
|
s.required_ruby_version = Gem::Requirement.new("~> 3.2".freeze)
|
|
21
|
-
s.rubygems_version = "3.
|
|
21
|
+
s.rubygems_version = "3.7.2".freeze
|
|
22
22
|
s.summary = "A command-line interface (CLI) for interacting with an Ollama AI model.".freeze
|
|
23
23
|
s.test_files = ["spec/assets/example.rb".freeze, "spec/ollama_chat/chat_spec.rb".freeze, "spec/ollama_chat/clipboard_spec.rb".freeze, "spec/ollama_chat/follow_chat_spec.rb".freeze, "spec/ollama_chat/information_spec.rb".freeze, "spec/ollama_chat/kramdown_ansi_spec.rb".freeze, "spec/ollama_chat/message_list_spec.rb".freeze, "spec/ollama_chat/message_output_spec.rb".freeze, "spec/ollama_chat/model_handling_spec.rb".freeze, "spec/ollama_chat/parsing_spec.rb".freeze, "spec/ollama_chat/server_socket_spec.rb".freeze, "spec/ollama_chat/source_fetching_spec.rb".freeze, "spec/ollama_chat/switches_spec.rb".freeze, "spec/ollama_chat/utils/cache_fetcher_spec.rb".freeze, "spec/ollama_chat/utils/fetcher_spec.rb".freeze, "spec/ollama_chat/utils/file_argument_spec.rb".freeze, "spec/ollama_chat/web_searching_spec.rb".freeze, "spec/spec_helper.rb".freeze]
|
|
24
24
|
|
|
25
25
|
s.specification_version = 4
|
|
26
26
|
|
|
27
|
-
s.add_development_dependency(%q<gem_hadar>.freeze, ["~> 2.
|
|
27
|
+
s.add_development_dependency(%q<gem_hadar>.freeze, ["~> 2.8".freeze])
|
|
28
28
|
s.add_development_dependency(%q<all_images>.freeze, ["~> 0.6".freeze])
|
|
29
29
|
s.add_development_dependency(%q<rspec>.freeze, ["~> 3.2".freeze])
|
|
30
30
|
s.add_development_dependency(%q<kramdown>.freeze, ["~> 2.0".freeze])
|
|
@@ -41,12 +41,11 @@ Gem::Specification.new do |s|
|
|
|
41
41
|
s.add_runtime_dependency(%q<redis>.freeze, ["~> 5.0".freeze])
|
|
42
42
|
s.add_runtime_dependency(%q<mime-types>.freeze, ["~> 3.0".freeze])
|
|
43
43
|
s.add_runtime_dependency(%q<reverse_markdown>.freeze, ["~> 3.0".freeze])
|
|
44
|
-
s.add_runtime_dependency(%q<xdg>.freeze, [">= 0".freeze])
|
|
45
44
|
s.add_runtime_dependency(%q<kramdown-ansi>.freeze, ["~> 0.2".freeze])
|
|
46
45
|
s.add_runtime_dependency(%q<complex_config>.freeze, ["~> 0.22".freeze, ">= 0.22.2".freeze])
|
|
47
46
|
s.add_runtime_dependency(%q<tins>.freeze, ["~> 1.41".freeze])
|
|
48
47
|
s.add_runtime_dependency(%q<search_ui>.freeze, ["~> 0.0".freeze])
|
|
49
|
-
s.add_runtime_dependency(%q<amatch>.freeze, ["~> 0.4
|
|
48
|
+
s.add_runtime_dependency(%q<amatch>.freeze, ["~> 0.4".freeze])
|
|
50
49
|
s.add_runtime_dependency(%q<pdf-reader>.freeze, ["~> 2.0".freeze])
|
|
51
50
|
s.add_runtime_dependency(%q<csv>.freeze, ["~> 3.0".freeze])
|
|
52
51
|
s.add_runtime_dependency(%q<const_conf>.freeze, ["~> 0.3".freeze])
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ollama_chat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.37
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Florian Frank
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '2.
|
|
18
|
+
version: '2.8'
|
|
19
19
|
type: :development
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '2.
|
|
25
|
+
version: '2.8'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: all_images
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -253,20 +253,6 @@ dependencies:
|
|
|
253
253
|
- - "~>"
|
|
254
254
|
- !ruby/object:Gem::Version
|
|
255
255
|
version: '3.0'
|
|
256
|
-
- !ruby/object:Gem::Dependency
|
|
257
|
-
name: xdg
|
|
258
|
-
requirement: !ruby/object:Gem::Requirement
|
|
259
|
-
requirements:
|
|
260
|
-
- - ">="
|
|
261
|
-
- !ruby/object:Gem::Version
|
|
262
|
-
version: '0'
|
|
263
|
-
type: :runtime
|
|
264
|
-
prerelease: false
|
|
265
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
266
|
-
requirements:
|
|
267
|
-
- - ">="
|
|
268
|
-
- !ruby/object:Gem::Version
|
|
269
|
-
version: '0'
|
|
270
256
|
- !ruby/object:Gem::Dependency
|
|
271
257
|
name: kramdown-ansi
|
|
272
258
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -335,14 +321,14 @@ dependencies:
|
|
|
335
321
|
requirements:
|
|
336
322
|
- - "~>"
|
|
337
323
|
- !ruby/object:Gem::Version
|
|
338
|
-
version: 0.4
|
|
324
|
+
version: '0.4'
|
|
339
325
|
type: :runtime
|
|
340
326
|
prerelease: false
|
|
341
327
|
version_requirements: !ruby/object:Gem::Requirement
|
|
342
328
|
requirements:
|
|
343
329
|
- - "~>"
|
|
344
330
|
- !ruby/object:Gem::Version
|
|
345
|
-
version: 0.4
|
|
331
|
+
version: '0.4'
|
|
346
332
|
- !ruby/object:Gem::Dependency
|
|
347
333
|
name: pdf-reader
|
|
348
334
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -526,7 +512,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
526
512
|
- !ruby/object:Gem::Version
|
|
527
513
|
version: '0'
|
|
528
514
|
requirements: []
|
|
529
|
-
rubygems_version: 3.
|
|
515
|
+
rubygems_version: 3.7.2
|
|
530
516
|
specification_version: 4
|
|
531
517
|
summary: A command-line interface (CLI) for interacting with an Ollama AI model.
|
|
532
518
|
test_files:
|