inquirex-llm 0.1.0

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.
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: inquirex-llm
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Konstantin Gredeskoul
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: inquirex
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '0.2'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '0.2'
26
+ description: Extends the Inquirex DSL with four LLM-powered verbs — clarify, describe,
27
+ summarize, and detour — that run server-side to extract structured data, generate
28
+ text, and dynamically branch flows. Pluggable adapter interface keeps the gem LLM-agnostic;
29
+ a NullAdapter ships for testing.
30
+ email:
31
+ - kigster@gmail.com
32
+ executables:
33
+ - inquirex-llm
34
+ extensions: []
35
+ extra_rdoc_files: []
36
+ files:
37
+ - ".relaxed_rubocop.yml"
38
+ - ".secrets.baseline"
39
+ - CHANGELOG.md
40
+ - LICENSE.txt
41
+ - README.md
42
+ - Rakefile
43
+ - docs/badges/coverage_badge.svg
44
+ - exe/inquirex-llm
45
+ - justfile
46
+ - lefthook.yml
47
+ - lib/inquirex-llm.rb
48
+ - lib/inquirex/llm.rb
49
+ - lib/inquirex/llm/adapter.rb
50
+ - lib/inquirex/llm/dsl/flow_builder.rb
51
+ - lib/inquirex/llm/dsl/llm_step_builder.rb
52
+ - lib/inquirex/llm/errors.rb
53
+ - lib/inquirex/llm/node.rb
54
+ - lib/inquirex/llm/null_adapter.rb
55
+ - lib/inquirex/llm/schema.rb
56
+ - lib/inquirex/llm/version.rb
57
+ - sig/inquirex/llm.rbs
58
+ homepage: https://github.com/inquirex/inquirex-llm
59
+ licenses:
60
+ - MIT
61
+ metadata:
62
+ allowed_push_host: https://rubygems.org
63
+ homepage_uri: https://github.com/inquirex/inquirex-llm
64
+ source_code_uri: https://github.com/inquirex/inquirex-llm
65
+ changelog_uri: https://github.com/inquirex/inquirex-llm/blob/main/CHANGELOG.md
66
+ rubygems_mfa_required: 'true'
67
+ rdoc_options: []
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 4.0.0
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubygems_version: 4.0.10
82
+ specification_version: 4
83
+ summary: LLM integration verbs for the Inquirex questionnaire engine
84
+ test_files: []