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 +4 -4
- data/.gitignore +1 -0
- data/CHANGES.md +30 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/config/searxng/settings.yml +2583 -0
- data/docker-compose.yml +21 -0
- data/lib/ollama_chat/chat.rb +35 -19
- data/lib/ollama_chat/follow_chat.rb +1 -1
- data/lib/ollama_chat/information.rb +2 -0
- data/lib/ollama_chat/ollama_chat_config/default_config.yml +8 -1
- data/lib/ollama_chat/source_fetching.rb +0 -33
- data/lib/ollama_chat/version.rb +1 -1
- data/lib/ollama_chat/web_searching.rb +60 -0
- data/lib/ollama_chat.rb +1 -0
- data/ollama_chat.gemspec +7 -7
- data/spec/assets/searxng.json +111 -0
- data/spec/ollama_chat/chat_spec.rb +16 -1
- data/spec/ollama_chat/source_fetching_spec.rb +0 -9
- data/spec/ollama_chat/web_searching_spec.rb +33 -0
- data/spec/spec_helper.rb +2 -0
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc27a8640616134647d04ee2d9b806e41806a55dc8a492e24bcf90509a84f8c8
|
4
|
+
data.tar.gz: b560ce8230eb463f38881605c29f73cab6a601dc9194b79cacec2ce443b1a4bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92e51935010fcace611baa132f5619b2894da2509854eb20d428e2a5d74b6bc658fa90edd577633a887b381f24861c7d3c580a79891e7cfc348a11b6b9191a08
|
7
|
+
data.tar.gz: d74878f18ff236f99c75fee50b40a91c69a3aaa245c2c681d33f68d8869d5a745afb7afcc8219e8cb4a1f443fe3c055661a3a25b5f03f6007fa8f9042ffaa0d6
|
data/.gitignore
CHANGED
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
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|