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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6fb9a8c4d866252bfa8ace6399ae3a9c7b72ace633c5b98b7a5c40543be105ba
4
- data.tar.gz: d899a33db800219a4874d1db8da428dfacf14d6013fd2a2b76f58c12c7cece82
3
+ metadata.gz: a6ecb3e69adc69e9ce8c09eac40af1fb1078dd85d9b7edf33eb5c0cf33027a3c
4
+ data.tar.gz: cbfc1d833db9239d5d354fd9388bc48247c2dfa3e1ea92500a08f3f85e5dce9b
5
5
  SHA512:
6
- metadata.gz: 303e0bda16f1cf0eba110271a63e40eb4563a90af5cb152465ba51bde1a3dcfaf3b317210df77cfcdc78541f1c0c0bbcf0346edfd134821928922083cc37cddd
7
- data.tar.gz: b05f2ead74ccb3e534beb407203fb26d6070715337255ab09b451b52fd355a740c0a3ceaad348091a5e302b11db4d56cd9c3c71e0e207268c4fc0a93d2231b8f
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: false) do |context|
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: false).to_json
87
+ ContextSpook.generate_context(context_filename, verbose: true).to_json
88
88
  end
89
89
  end
90
90
  end
@@ -1,6 +1,6 @@
1
1
  module OllamaChat
2
2
  # OllamaChat version
3
- VERSION = '0.0.51'
3
+ VERSION = '0.0.52'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
data/ollama_chat.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: ollama_chat 0.0.51 ruby lib
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.51".freeze
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]
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.51
4
+ version: 0.0.52
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank