scout-ai 1.1.2 → 1.1.3
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/VERSION +1 -1
- data/lib/scout/llm/backends/responses.rb +1 -1
- data/lib/scout/llm/chat/annotation.rb +5 -0
- data/lib/scout/llm/chat/parse.rb +1 -1
- data/scout-ai.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65b67b1b79b3f3e5cdc408b559f2749d79d6f7f1f8f9fbe4b9dd280285c88cda
|
|
4
|
+
data.tar.gz: cd7f022ff25e70afd81f46bb18eea4e5579c67305cb087c7e5d18d251ed0d620
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4be2245fd4ce9b5eeecdc6b239b7b6a2f3fda1edcc0d804762d338ce777bb41fe9b39679ead69194a4841344f529fdf4753dfa23107bab7b4ae39218d735bbd
|
|
7
|
+
data.tar.gz: d8a8e2157a45470a04403c380dd8608723bef87dc97022304e0dc75bbf70573a283be7535b58959efdaeb6e63b119698e2308c8960cf9a0ed4231d653db822ff
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.3
|
|
@@ -115,7 +115,7 @@ module LLM
|
|
|
115
115
|
case role.to_s
|
|
116
116
|
when 'image'
|
|
117
117
|
path = message[:content]
|
|
118
|
-
path =
|
|
118
|
+
path = Chat.find_file path
|
|
119
119
|
if Open.remote?(path)
|
|
120
120
|
res << {role: :user, content: {type: :input_image, image_url: path }}
|
|
121
121
|
elsif Open.exists?(path)
|
data/lib/scout/llm/chat/parse.rb
CHANGED
data/scout-ai.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: scout-ai 1.1.
|
|
5
|
+
# stub: scout-ai 1.1.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "scout-ai".freeze
|
|
9
|
-
s.version = "1.1.
|
|
9
|
+
s.version = "1.1.3".freeze
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|