boxcars 0.4.2 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3331a78e13cbbd90ee2b5c37d09ee6721ca9f5812654c045649f4555198ace1
4
- data.tar.gz: 727f2acecdfb28ba6ef6e313f946182ee8569758e62f37d68e32dbf075a62cba
3
+ metadata.gz: 2e58db8383158eb46fa9b359ca29822796f46a83e9770ab262af147f2f26516a
4
+ data.tar.gz: 261d53fe053d0c3ea7756ee154ff73a077aa5cd2307056f807c20772f06d97bc
5
5
  SHA512:
6
- metadata.gz: 95adc97ef8b02af5c6ddd9ae5d6463e39df4935290ee902075a2211b02f4968d18d6faf367678a64507b899b88ba9505392ccf166483c3cfbbe211e07aafe8c6
7
- data.tar.gz: d2d6e03b64404313dc8fa5d9ad671a5be19575cdf0b45e4c4d8b9e05b48a649eb6d8de9d371bab39c508630743c1fd97275d2ae25e324f32d28ac94510c42dd8
6
+ metadata.gz: a6629134fb279e4d2556b2a1ec0a1ef43932370099f92b667a8ea45bf355aa9e9dbf5f8ee53cca0c66ba1b09a1198d38cbf168ecb3b7541814d1513287e4f353
7
+ data.tar.gz: fc6d01c0497346f7965296f4ebb7c6b69d67d48f4ec4853a1a8235134e50a966f13cd39ef0b488bab4d27caa8da6d907ae885e70fe63a46732fc859c11c5acde
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.4.2](https://github.com/BoxcarsAI/boxcars/tree/v0.4.2) (2023-08-05)
4
+
5
+ [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.4.1...v0.4.2)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Add xml engine boxcar [\#108](https://github.com/BoxcarsAI/boxcars/pull/108) ([francis](https://github.com/francis))
10
+ - Updated README.md [\#107](https://github.com/BoxcarsAI/boxcars/pull/107) ([Flummoxsoftly](https://github.com/Flummoxsoftly))
11
+
3
12
  ## [v0.4.1](https://github.com/BoxcarsAI/boxcars/tree/v0.4.1) (2023-07-25)
4
13
 
5
14
  [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.4.0...v0.4.1)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- boxcars (0.4.2)
4
+ boxcars (0.4.3)
5
5
  anthropic (~> 0.1)
6
6
  google_search_results (~> 2.2)
7
7
  gpt4all (~> 0.0.4)
@@ -48,6 +48,7 @@ GEM
48
48
  async
49
49
  async-pool (0.4.0)
50
50
  async (>= 1.25)
51
+ base64 (0.1.1)
51
52
  concurrent-ruby (1.2.2)
52
53
  console (1.17.4)
53
54
  fiber-annotation
@@ -61,7 +62,8 @@ GEM
61
62
  domain_name (0.5.20190701)
62
63
  unf (>= 0.0.5, < 1.0.0)
63
64
  dotenv (2.8.1)
64
- faraday (2.7.10)
65
+ faraday (2.7.11)
66
+ base64
65
67
  faraday-net_http (>= 2.0, < 3.1)
66
68
  ruby2_keywords (>= 0.0.4)
67
69
  faraday-http-cache (2.5.0)
@@ -107,9 +109,9 @@ GEM
107
109
  multipart-post (2.3.0)
108
110
  netrc (0.11.0)
109
111
  nio4r (2.5.9)
110
- nokogiri (1.15.3-arm64-darwin)
112
+ nokogiri (1.15.4-arm64-darwin)
111
113
  racc (~> 1.4)
112
- nokogiri (1.15.3-x86_64-linux)
114
+ nokogiri (1.15.4-x86_64-linux)
113
115
  racc (~> 1.4)
114
116
  octokit (4.25.1)
115
117
  faraday (>= 1, < 3)
@@ -177,7 +179,7 @@ GEM
177
179
  rubocop (~> 1.33)
178
180
  rubocop-capybara (~> 2.17)
179
181
  rubocop-factory_bot (~> 2.22)
180
- ruby-openai (4.2.0)
182
+ ruby-openai (4.3.2)
181
183
  faraday (>= 1)
182
184
  faraday-multipart (>= 1)
183
185
  ruby-progressbar (1.13.0)
@@ -50,11 +50,12 @@ module Boxcars
50
50
  %i[sports_results game_spotlight],
51
51
  %i[knowledge_graph description],
52
52
  [:organic_results, 0, :snippet],
53
- [:organic_results, 0, :snippet_highlighted_words, 0]
53
+ [:organic_results, 0, :snippet_highlighted_words, 0],
54
+ [:organic_results, 0, :title]
54
55
  ].freeze
55
56
 
56
57
  def find_answer(res)
57
- raise Error, "Got error from SerpAPI: {res[:error]}" if res[:error]
58
+ raise Error, "Got error from SerpAPI: #{res[:error]}" if res[:error]
58
59
 
59
60
  ANSWER_LOCATIONS.each do |path|
60
61
  next unless res.dig(*path)
@@ -11,6 +11,8 @@ module Boxcars
11
11
  # @return [Array<String>] The action and input.
12
12
  def get_answer(engine_output)
13
13
  xn_get_answer(XNode.from_xml(engine_output))
14
+ rescue StandardError => e
15
+ Result.from_error("Error: #{e.message}:\n#{engine_output}")
14
16
  end
15
17
 
16
18
  # get answer an XNode
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Boxcars
4
4
  # The current version of the gem.
5
- VERSION = "0.4.2"
5
+ VERSION = "0.4.3"
6
6
  end
data/run.json ADDED
@@ -0,0 +1,62 @@
1
+ <output>
2
+ <articles>
3
+ <article id="46">
4
+ <confidence>
5
+ <cscore>4</cscore>
6
+ <creason>Article discusses a solar panel manufacturing project and related tax incentives in Fort Mill, South Carolina</creason>
7
+ </confidence>
8
+ <favorability>
9
+ <fscore>2</fscore>
10
+ <freason>Article suggests some uncertainty around whether the tax incentives will be approved</freason>
11
+ </favorability>
12
+ <county>York County</county>
13
+ <state>South Carolina</state>
14
+ </article>
15
+
16
+ <article id="47">
17
+ <confidence>
18
+ <cscore>5</cscore>
19
+ <creason>Article clearly discusses a solar energy project in Morgan County</creason>
20
+ </confidence>
21
+ <favorability>
22
+ <fscore>3</fscore>
23
+ <freason>Article suggests some public concerns but does not take a strong stance</freason>
24
+ </favorability>
25
+ <county>Morgan County</county>
26
+ <state>Colorado</state>
27
+ </article>
28
+
29
+ <article id="48">
30
+ <confidence>
31
+ <cscore>5</cscore>
32
+ <creason>Article discusses regulations for large-scale solar projects in Linn County, Iowa</creason>
33
+ </confidence>
34
+ <favorability>
35
+ <fscore>2</fscore>
36
+ <freason>Article suggests the county is moving toward stricter regulations</freason>
37
+ </favorability>
38
+ <county>Linn County</county>
39
+ <state>Iowa</state>
40
+ </article>
41
+
42
+ <article id="49">
43
+ <confidence>
44
+ <cscore>5</cscore>
45
+ <creason>Article clearly discusses approval of a solar project expansion in Clinton County</creason>
46
+ </confidence>
47
+ <favorability>
48
+ <fscore>4</fscore>
49
+ <freason>Article suggests consensus in approving the expansion</freason>
50
+ </favorability>
51
+ <county>Clinton County</county>
52
+ <state>Iowa</state>
53
+ </article>
54
+
55
+ <article id="50">
56
+ <confidence>
57
+ <cscore>1</cscore>
58
+ <creason>Article discusses solar panels on a farm building in the UK, not a utility-scale project in the US</creason>
59
+ </article>
60
+
61
+ </articles>
62
+ </output>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxcars
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francis Sullivan
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-08-05 00:00:00.000000000 Z
12
+ date: 2023-09-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: anthropic
@@ -183,6 +183,7 @@ files:
183
183
  - lib/boxcars/vector_store/split_text.rb
184
184
  - lib/boxcars/version.rb
185
185
  - lib/boxcars/x_node.rb
186
+ - run.json
186
187
  homepage: https://github.com/BoxcarsAI/boxcars
187
188
  licenses:
188
189
  - MIT