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
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ollama_chat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Frank
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-22 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gem_hadar
|
@@ -15,14 +15,14 @@ dependencies:
|
|
15
15
|
requirements:
|
16
16
|
- - "~>"
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: '1.
|
18
|
+
version: '1.20'
|
19
19
|
type: :development
|
20
20
|
prerelease: false
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
22
22
|
requirements:
|
23
23
|
- - "~>"
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: '1.
|
25
|
+
version: '1.20'
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: all_images
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -377,6 +377,7 @@ extra_rdoc_files:
|
|
377
377
|
- lib/ollama_chat/utils/fetcher.rb
|
378
378
|
- lib/ollama_chat/utils/file_argument.rb
|
379
379
|
- lib/ollama_chat/version.rb
|
380
|
+
- lib/ollama_chat/web_searching.rb
|
380
381
|
files:
|
381
382
|
- ".all_images.yml"
|
382
383
|
- ".envrc"
|
@@ -387,6 +388,7 @@ files:
|
|
387
388
|
- Rakefile
|
388
389
|
- VERSION
|
389
390
|
- bin/ollama_chat
|
391
|
+
- config/searxng/settings.yml
|
390
392
|
- docker-compose.yml
|
391
393
|
- lib/ollama_chat.rb
|
392
394
|
- lib/ollama_chat/chat.rb
|
@@ -409,6 +411,7 @@ files:
|
|
409
411
|
- lib/ollama_chat/utils/fetcher.rb
|
410
412
|
- lib/ollama_chat/utils/file_argument.rb
|
411
413
|
- lib/ollama_chat/version.rb
|
414
|
+
- lib/ollama_chat/web_searching.rb
|
412
415
|
- ollama_chat.gemspec
|
413
416
|
- redis/redis.conf
|
414
417
|
- spec/assets/api_show.json
|
@@ -426,6 +429,7 @@ files:
|
|
426
429
|
- spec/assets/example.xml
|
427
430
|
- spec/assets/kitten.jpg
|
428
431
|
- spec/assets/prompt.txt
|
432
|
+
- spec/assets/searxng.json
|
429
433
|
- spec/ollama_chat/chat_spec.rb
|
430
434
|
- spec/ollama_chat/clipboard_spec.rb
|
431
435
|
- spec/ollama_chat/follow_chat_spec.rb
|
@@ -438,6 +442,7 @@ files:
|
|
438
442
|
- spec/ollama_chat/utils/cache_fetcher_spec.rb
|
439
443
|
- spec/ollama_chat/utils/fetcher_spec.rb
|
440
444
|
- spec/ollama_chat/utils/file_argument_spec.rb
|
445
|
+
- spec/ollama_chat/web_searching_spec.rb
|
441
446
|
- spec/spec_helper.rb
|
442
447
|
- tmp/.keep
|
443
448
|
homepage: https://github.com/flori/ollama_chat
|
@@ -479,4 +484,5 @@ test_files:
|
|
479
484
|
- spec/ollama_chat/utils/cache_fetcher_spec.rb
|
480
485
|
- spec/ollama_chat/utils/fetcher_spec.rb
|
481
486
|
- spec/ollama_chat/utils/file_argument_spec.rb
|
487
|
+
- spec/ollama_chat/web_searching_spec.rb
|
482
488
|
- spec/spec_helper.rb
|