ollama_chat 0.0.51 → 0.0.52
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 +9 -0
- data/lib/ollama_chat/input_content.rb +2 -2
- data/lib/ollama_chat/version.rb +1 -1
- data/ollama_chat.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6ecb3e69adc69e9ce8c09eac40af1fb1078dd85d9b7edf33eb5c0cf33027a3c
|
|
4
|
+
data.tar.gz: cbfc1d833db9239d5d354fd9388bc48247c2dfa3e1ea92500a08f3f85e5dce9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91fd323ab11c5b9b44787163978c8862310054939b591ff9566a182783d20cda4768ee0aa1c55b90b30a3a7e475e1df33f0f2c81f2c1e4b99b757daead3c18fe
|
|
7
|
+
data.tar.gz: 57b4ca9f70ed945a947a099d4323f909a74bb8b6f97e4925af06692552962124cb0244e2b1208cd414b6022ef68b164fbe64b0dee1e87568c2ca4cbec4fe3013
|
data/CHANGES.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 2026-01-06 v0.0.52
|
|
4
|
+
|
|
5
|
+
- Enabled verbose context generation to provide real-time feedback during
|
|
6
|
+
context collection operations
|
|
7
|
+
- Improved user experience by monitoring context size for LLM token limit
|
|
8
|
+
considerations
|
|
9
|
+
- Added better feedback mechanisms to help users gauge processing time during
|
|
10
|
+
context generation
|
|
11
|
+
|
|
3
12
|
## 2026-01-06 v0.0.51
|
|
4
13
|
|
|
5
14
|
- Added `/input` command to allow users to select files using glob patterns
|
|
@@ -74,7 +74,7 @@ module OllamaChat::InputContent
|
|
|
74
74
|
# context_spook(nil)
|
|
75
75
|
def context_spook(patterns)
|
|
76
76
|
if patterns
|
|
77
|
-
ContextSpook::generate_context(verbose:
|
|
77
|
+
ContextSpook::generate_context(verbose: true) do |context|
|
|
78
78
|
context do
|
|
79
79
|
Dir.glob(patterns).each do |filename|
|
|
80
80
|
File.file?(filename) or next
|
|
@@ -84,7 +84,7 @@ module OllamaChat::InputContent
|
|
|
84
84
|
end.to_json
|
|
85
85
|
else
|
|
86
86
|
if context_filename = choose_filename('.contexts/*.rb')
|
|
87
|
-
ContextSpook.generate_context(context_filename, verbose:
|
|
87
|
+
ContextSpook.generate_context(context_filename, verbose: true).to_json
|
|
88
88
|
end
|
|
89
89
|
end
|
|
90
90
|
end
|
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.52 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.52".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]
|