ollama_chat 0.0.3 → 0.0.4

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: a3f84805f1f6ef58ce6fd25f0f4a477b919c7afa72d909bf3c48ca8fa643d1dd
4
+ data.tar.gz: 61ce65c1f30464f4b30c0a4228a88aa9f4796a15407820d84db5c6240527d014
5
5
  SHA512:
6
- metadata.gz: 8370cf8beedee8da4c6f9d985966037e9f16ef2bcfe772f65c6bb0c3e61c835386f1f58d02639adeab61b9dd67df2b59fcd6a816fc1ab1b837d53599a085e0c6
7
- data.tar.gz: aa6471bdce5fd7398c2886a0df8b86023c41dc9c7e3ad9e216503c5e37b80437f7d3278e6fb7a43e638f04551e0fc521bdbbe2731528de1223886abb105a6a62
6
+ metadata.gz: 68bff70a1b439a0a01ec0daf7c8a643c6814450f8dbdd8368d92a43941d774034fe34a616f237ecec66c59ab1ed97585eda5e39d857625fd8f5a9a61d8d3f7b0
7
+ data.tar.gz: 20ec1a209f3e23374f0b3ee8b0bb1b1757fbb412500c823f1b8117f19ddc323dec2b9d1715fb9e3726549885dee08d4ccf00e25f1036a5af57699cb3f42b02c6
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,20 @@
1
1
  # Changes
2
2
 
3
+ ## 2025-02-21 v0.0.4
4
+
5
+ * Added support for web searching with SearXNG:
6
+ + Added `ollama_chat/web_searching.rb` module which includes a generic
7
+ `search_web` method that uses the selected search engine.
8
+ + Updated `ollama_chat/default_config.yml` to include configuration options
9
+ for web searching with all engines.
10
+ + Updated `ollama_chat/chat.rb` to use the new `web_searching` module and
11
+ updated the `search_web` method to return results from either engine.
12
+ + Added specs in `spec/ollama_chat/web_searching_spec.rb` to test the new functionality.
13
+ * Added ollama chat version display to information module and spec:
14
+ + Added `STDOUT.puts` for displaying ollama chat version in `lib/ollama_chat/information.rb`
15
+ + Updated test in `spec/ollama_chat/chat_spec.rb` to include new output string
16
+ * Update chat document redis cache expiration time default to 0.
17
+
3
18
  ## 2025-02-17 v0.0.3
4
19
 
5
20
  * 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.4