ollama_chat 0.0.3 → 0.0.5

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: 2d43fc32c5ffc8c706161380789195d95410721f3f03f7154218c1733036dd47
4
- data.tar.gz: 1238495af8d19da4f6dc1538a8f452fc659192904b5b57dc32b99633199c1952
3
+ metadata.gz: fc27a8640616134647d04ee2d9b806e41806a55dc8a492e24bcf90509a84f8c8
4
+ data.tar.gz: b560ce8230eb463f38881605c29f73cab6a601dc9194b79cacec2ce443b1a4bc
5
5
  SHA512:
6
- metadata.gz: 8370cf8beedee8da4c6f9d985966037e9f16ef2bcfe772f65c6bb0c3e61c835386f1f58d02639adeab61b9dd67df2b59fcd6a816fc1ab1b837d53599a085e0c6
7
- data.tar.gz: aa6471bdce5fd7398c2886a0df8b86023c41dc9c7e3ad9e216503c5e37b80437f7d3278e6fb7a43e638f04551e0fc521bdbbe2731528de1223886abb105a6a62
6
+ metadata.gz: 92e51935010fcace611baa132f5619b2894da2509854eb20d428e2a5d74b6bc658fa90edd577633a887b381f24861c7d3c580a79891e7cfc348a11b6b9191a08
7
+ data.tar.gz: d74878f18ff236f99c75fee50b40a91c69a3aaa245c2c681d33f68d8869d5a745afb7afcc8219e8cb4a1f443fe3c055661a3a25b5f03f6007fa8f9042ffaa0d6
data/.gitignore CHANGED
@@ -2,6 +2,7 @@
2
2
  .AppleDouble
3
3
  .bundle
4
4
  .yardoc
5
+ /config/searxng/*
5
6
  Gemfile.lock
6
7
  corpus
7
8
  coverage
data/CHANGES.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Changes
2
2
 
3
+ ## 2025-03-22 v0.0.5
4
+
5
+ * Updated default config to use environment variable for Searxng URL:
6
+ * Changed `url` field in `searxng` section of `default_config.yml`.
7
+ * Replaced hardcoded URL with expression that fetches value from `OLLAMA_SEARXNG_URL` environment variable.
8
+ * Handle Ollama server disconnection:
9
+ * Added error handling for `Ollama::Errors::TimeoutError`.
10
+ * Print error message when connection is lost.
11
+ * Output last exchange of a loaded conversation:
12
+ * Add attribute reader to `messages` in `lib/ollama_chat/chat.rb`.
13
+ * Replace `@messages` with `messages` in method calls throughout the class.
14
+ * Update conversation listing, clearing, dropping, saving, loading methods.
15
+ * Refactor interaction with user logic.
16
+ * Update tests in `spec/ollama_chat/chat_spec.rb`.
17
+
18
+ ## 2025-02-21 v0.0.4
19
+
20
+ * Added support for web searching with SearXNG:
21
+ + Added `ollama_chat/web_searching.rb` module which includes a generic
22
+ `search_web` method that uses the selected search engine.
23
+ + Updated `ollama_chat/default_config.yml` to include configuration options
24
+ for web searching with all engines.
25
+ + Updated `ollama_chat/chat.rb` to use the new `web_searching` module and
26
+ updated the `search_web` method to return results from either engine.
27
+ + Added specs in `spec/ollama_chat/web_searching_spec.rb` to test the new functionality.
28
+ * Added ollama chat version display to information module and spec:
29
+ + Added `STDOUT.puts` for displaying ollama chat version in `lib/ollama_chat/information.rb`
30
+ + Updated test in `spec/ollama_chat/chat_spec.rb` to include new output string
31
+ * Update chat document redis cache expiration time default to 0.
32
+
3
33
  ## 2025-02-17 v0.0.3
4
34
 
5
35
  * Support setting of request headers:
data/Rakefile CHANGED
@@ -21,7 +21,7 @@ GemHadar do
21
21
 
22
22
  test_dir 'spec'
23
23
  ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.AppleDouble', '.bundle',
24
- '.yardoc', 'tags', 'corpus', 'coverage'
24
+ '.yardoc', 'tags', 'corpus', 'coverage', '/config/searxng/*'
25
25
 
26
26
  readme 'README.md'
27
27
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.5