Module: OllamaChat::Information
Overview
A module that provides information and user agent functionality for OllamaChat
The Information module encapsulates methods for managing application identification, displaying version and configuration details, and providing a modular information dashboard for chat sessions. It includes user agent capabilities for HTTP requests and provides focused information views.
Defined Under Namespace
Modules: UserAgent
Instance Method Summary collapse
-
#client ⇒ String
The client method returns the application name and its current version as a single string.
-
#collection_stats(output: STDOUT) ⇒ Object
The collection_stats method displays statistics about the current document collection.
-
#display_chat_help(pattern = nil) ⇒ Object
The display_chat_help method outputs the chat help message to standard output, eventually using the configured pager.
-
#dynamic_runtime_information ⇒ String
The dynamic_runtime_information method generates a formatted string containing real-time environment details (the "heartbeat").
-
#dynamic_runtime_information_values ⇒ Hash
The dynamic_runtime_information_values method compiles a set of volatile runtime details that change frequently.
-
#info(output: STDOUT) ⇒ Object
Displays a high-level summary dashboard of the current state of the ollama_chat instance.
-
#info_model(output: STDOUT) ⇒ Object
Displays detailed information about the current chat model, including capabilities, families, and configuration options.
-
#info_rag(output: STDOUT) ⇒ Object
Displays information regarding the Retrieval Augmented Generation (RAG) configuration, including the embedding model and collection statistics.
-
#info_runtime(output: STDOUT) ⇒ Object
Displays the current runtime environment details, split into static (session-level) and dynamic (real-time) information.
-
#info_session(output: STDOUT) ⇒ Object
Displays a detailed view of the current chat session state, including the system prompt, persona, active model, thinking modes, tools, and audio settings.
-
#infobar_message ⇒ Hash
Returns the infobar message configuration as a hash.
-
#print_welcome(output: STDOUT) ⇒ Object
The print_welcome method prints a welcome message containing the application version, the connected ollama server version, and the server URL.
-
#server_url ⇒ String
The server_url method returns the base URL of the Ollama server connection.
-
#server_version ⇒ String
The server_version method retrieves the version of the Ollama server.
-
#static_runtime_information ⇒ String
Generates a formatted string of static runtime information.
-
#static_runtime_information_values ⇒ Hash
Generates a hash containing static runtime information.
-
#usage ⇒ Integer
The usage method displays the command-line idea help text and returns an exit code of 0.
-
#user ⇒ String
Retrieves the name of the chat user.
-
#user_name ⇒ String
Retrieves the name of the chat user.
-
#version ⇒ Integer
The version method outputs the program name and its version number to standard output.
Instance Method Details
#client ⇒ String
The client method returns the application name and its current version as a single string
62 63 64 |
# File 'lib/ollama_chat/information.rb', line 62 def client [ progname, OllamaChat::VERSION ] * ' ' end |
#collection_stats(output: STDOUT) ⇒ Object
The collection_stats method displays statistics about the current document collection.
This method outputs information regarding the active document collection, including the collection name, total number of embeddings, and a list of tags.
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/ollama_chat/information.rb', line 74 def collection_stats(output: STDOUT) length = (Tins::Terminal.cols - 10).clamp(0..) = Kramdown::ANSI::Width. wrap(@documents..to_a.join(', '), length:). gsub(/(?<!\A)^/, ' ' * 4) output.puts <<~EOT Current Collection Name: #{bold{collection}} #Embeddings: #{@documents.size} #Tags: #{@documents..size} Tags: #{} EOT nil end |
#display_chat_help(pattern = nil) ⇒ Object
The display_chat_help method outputs the chat help message to standard output, eventually using the configured pager.
218 219 220 221 222 223 |
# File 'lib/ollama_chat/information.rb', line 218 def display_chat_help(pattern = nil) use_pager do |output| output.puts (pattern) end nil end |
#dynamic_runtime_information ⇒ String
The dynamic_runtime_information method generates a formatted string containing real-time environment details (the "heartbeat").
It returns the result of interpolating the dynamic values into the
configured dynamic_runtime_info prompt template.
361 362 363 |
# File 'lib/ollama_chat/information.rb', line 361 def dynamic_runtime_information prompt(:dynamic_runtime_info).to_s % dynamic_runtime_information_values end |
#dynamic_runtime_information_values ⇒ Hash
The dynamic_runtime_information_values method compiles a set of volatile runtime details that change frequently.
These include the current timestamp, weekday, session name, git branch and origin, terminal dimensions, and feature switch statuses.
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
# File 'lib/ollama_chat/information.rb', line 336 def dynamic_runtime_information_values now = Time.now { git_current_branch: `git rev-parse --abbrev-ref HEAD 2>/dev/null`.chomp.full? || 'n/a', git_remote_origin: `git remote get-url origin 2>/dev/null`.chomp.full? || 'n/a', git_sha: `git rev-parse HEAD 2>/dev/null`.chomp.full? || 'n/a', git_sha_short: `git rev-parse --short HEAD 2>/dev/null`.chomp.full? || 'n/a', markdown: markdown.on? ? 'enabled' : 'disabled', session_name: session.name, terminal_cols: Tins::Terminal.cols, terminal_rows: Tins::Terminal.rows, time: now.iso8601, tools_support: tools_support.on? ? 'enabled' : 'disabled', voice: voice.on? ? 'enabled' : 'disabled', weekday: now.strftime('%A'), } end |
#info(output: STDOUT) ⇒ Object
Displays a high-level summary dashboard of the current state of the ollama_chat instance.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/ollama_chat/information.rb', line 196 def info(output: STDOUT) print_welcome(output:) output.puts "📜 Documents database cache is #{@documents.nil? ? 'n/a' : bold{@documents.cache.class}}" output.puts "🔎 Currently selected search engine is #{bold{search_engine}}." output.puts "🧠 Current chat model is #{bold{@model}}." output.puts "🗣️ Session: #{bold{@session.name}} (#{italic{@session.id}})" output.puts " Current System Prompt: #{bold{current_system_prompt_name}}" if name = default_persona_name output.puts " 💃 Persona: #{bold{name}}" else output.puts " No persona selected." end output.print ' 🛠️ '; tools_support.show(output:) output.print ' 🏃 '; runtime_info.show(output:) nil end |
#info_model(output: STDOUT) ⇒ Object
Displays detailed information about the current chat model, including capabilities, families, and configuration options.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/ollama_chat/information.rb', line 95 def info_model(output: STDOUT) output.puts "🧠 Current chat model is #{bold{@model}}." output.puts " Capabilities: #{Array(@model_metadata&.capabilities) * ', '}" output.puts " Families: #{Array(@model_metadata&.families) * ', '}" profiles = models::ModelOptions.where(model_name: @model).order(:profile).all if profiles.full? output.puts " Stored Profile Options:" profiles.each do |p| output.puts <<~EOT.gsub(/^/, ' ') #{bold{p.profile}}: #{JSON.pretty_generate(p.)} EOT end elsif config.model..full? output.puts " Default Options: #{JSON.pretty_generate(mo).gsub(/(?<!\A)^/, ' ')}" end if .present? output.puts " Session Options: #{JSON.pretty_generate().gsub(/(?<!\A)^/, ' ')}" end end |
#info_rag(output: STDOUT) ⇒ Object
Displays information regarding the Retrieval Augmented Generation (RAG) configuration, including the embedding model and collection statistics.
167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/ollama_chat/information.rb', line 167 def info_rag(output: STDOUT) if @embedding.on? output.puts "🗄️ Current RAG model is #{bold{@embedding_model}}" if @embedding_model_options.present? output.puts " Options: #{JSON.pretty_generate(@embedding_model_options).gsub(/(?<!\A)^/, ' ')}" end output.puts "Text splitter is #{bold{config..splitter.name}}." collection_stats(output:) end @embedding.show(output:) output.puts "📜 Document policy for parsing in user text: #{bold{document_policy}}" end |
#info_runtime(output: STDOUT) ⇒ Object
Displays the current runtime environment details, split into static (session-level) and dynamic (real-time) information.
152 153 154 155 156 157 158 159 160 161 |
# File 'lib/ollama_chat/information.rb', line 152 def info_runtime(output: STDOUT) output.puts "🏃 Runtime Information:" output.print ' '; runtime_info.show(output:) output.puts 'Static:' output.puts static_runtime_information_values.stringify_keys_recursive.to_yaml. sub(/\A---\s*\n/, '').gsub(/^/, ' ') output.puts 'Dynamic:' output.puts dynamic_runtime_information_values.stringify_keys_recursive.to_yaml. sub(/\A---\s*\n/, '').gsub(/^/, ' ') end |
#info_session(output: STDOUT) ⇒ Object
Displays a detailed view of the current chat session state, including the system prompt, persona, active model, thinking modes, tools, and audio settings.
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/ollama_chat/information.rb', line 123 def info_session(output: STDOUT) output.print "🗣️ Current session: "; show_session(output:) output.puts " Current Session Working Directory: \"#{bold{session.working_directory}}\"" output.puts " Current System Prompt: #{bold{current_system_prompt_name}}" if name = default_persona_name output.puts " 💃 Persona: #{bold{name}}" else output.puts " No persona selected." end output.puts "🧠 Current chat model is #{bold{@model}}." output.print ' '; think_mode.show(output:) output.print ' '; think_loud.show(output:) output.print ' '; think_strip.show(output:) output.print ' 🛠️ '; tools_support.show(output:) output.print '⚙️ Chat Settings' output.print ' '; markdown.show(output:) output.print ' '; stream.show(output:) output.print ' 🎙️ '; voice.show(output:) if voice.on? output.print ' '; voices.show(output:) end output.print ' '; location.show(output:) output.print ' '; context_format.show(output:) end |
#infobar_message ⇒ Hash
Returns the infobar message configuration as a hash.
This configuration is used by the infobar gem to define the progress
bar's format and spinner settings.
296 297 298 |
# File 'lib/ollama_chat/information.rb', line 296 def config...to_h end |
#print_welcome(output: STDOUT) ⇒ Object
The print_welcome method prints a welcome message containing the application version, the connected ollama server version, and the server URL.
186 187 188 189 |
# File 'lib/ollama_chat/information.rb', line 186 def print_welcome(output: STDOUT) output.puts "💎 Running ollama_chat version: #{bold{OllamaChat::VERSION}}" output.puts "🔌 Connected to ollama server version: #{bold{server_version}} on: #{bold{server_url}}" end |
#server_url ⇒ String
The server_url method returns the base URL of the Ollama server connection.
272 273 274 |
# File 'lib/ollama_chat/information.rb', line 272 def server_url @server_url ||= ollama.base_url end |
#server_version ⇒ String
The server_version method retrieves the version of the Ollama server.
265 266 267 |
# File 'lib/ollama_chat/information.rb', line 265 def server_version @server_version ||= ollama.version.version end |
#static_runtime_information ⇒ String
Generates a formatted string of static runtime information.
This method interpolates the static runtime values into the
configured static_runtime_info prompt template.
325 326 327 |
# File 'lib/ollama_chat/information.rb', line 325 def static_runtime_information prompt(:static_runtime_info).to_s % static_runtime_information_values end |
#static_runtime_information_values ⇒ Hash
Generates a hash containing static runtime information.
This method collects session-level constants including the user, language preferences, location, client version, working directory, allowed tool paths, and available RAG collections.
307 308 309 310 311 312 313 314 315 316 317 |
# File 'lib/ollama_chat/information.rb', line 307 def static_runtime_information_values { client: , collections: JSON.pretty_generate(config..collection_descriptions?), current_directory: Pathname.pwd..to_path, languages: config.languages * ', ', location: location.on?.full? { location_description } || 'n/a', tool_paths_allowed: JSON.pretty_generate(tool_paths_allowed), user: , } end |
#usage ⇒ Integer
The usage method displays the command-line idea help text and returns an exit code of 0.
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'lib/ollama_chat/information.rb', line 229 def usage STDOUT.puts <<~EOT Usage: #{progname} [OPTIONS] -f CONFIG config file to read -l SESSION load session with name/id SESSION -n create a new session -u URL the ollama base url, OLLAMA_URL -m MODEL the ollama chat model, OLLAMA_CHAT_MODEL, ?selector -c CHAT a saved chat conversation to load -C COLLECTION name of the collection used in this conversation -D DOCUMENT load document and add to embeddings collection (multiple) -M use (empty) MemoryCache for this chat session -E disable embeddings for this chat session -S open a socket to receive input from ollama_chat_send -V display the current version number and quit -h this help Use `?selector` with `-m` or `-l` to filter options. Multiple matches will open a chooser dialog. EOT 0 end |
#user ⇒ String
Retrieves the name of the chat user.
279 280 281 |
# File 'lib/ollama_chat/information.rb', line 279 def user user_name || 'n/a' end |
#user_name ⇒ String
Retrieves the name of the chat user.
286 287 288 |
# File 'lib/ollama_chat/information.rb', line 286 def user_name OC::OLLAMA::CHAT::USER end |
#version ⇒ Integer
The version method outputs the program name and its version number to standard output.
257 258 259 260 |
# File 'lib/ollama_chat/information.rb', line 257 def version STDOUT.puts "%s %s" % [ progname, OllamaChat::VERSION ] 0 end |