ruby_llm_mesh 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,119 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_llm_mesh
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - theworker02
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: minitest
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '5.25'
19
+ type: :development
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '5.25'
26
+ - !ruby/object:Gem::Dependency
27
+ name: rake
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '13.2'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '13.2'
40
+ - !ruby/object:Gem::Dependency
41
+ name: webmock
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.24'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.24'
54
+ description: |
55
+ ruby_llm_mesh (AiAgentRouter) is a drop-in Ruby gem that routes AI prompts across
56
+ OpenAI, Anthropic, and local node runtimes with automatic circuit-breaking,
57
+ fallback ladders, lightweight RAG helpers, and optional ActiveRecord hooks.
58
+ email:
59
+ - theworker02@users.noreply.github.com
60
+ executables: []
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - CHANGELOG.md
65
+ - CODE_OF_CONDUCT.md
66
+ - CONTRIBUTING.md
67
+ - Gemfile
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - assets/logo.png
72
+ - lib/ruby_llm_mesh.rb
73
+ - lib/ruby_llm_mesh/active_record/acts_as_ai_agent.rb
74
+ - lib/ruby_llm_mesh/circuit_breaker.rb
75
+ - lib/ruby_llm_mesh/configuration.rb
76
+ - lib/ruby_llm_mesh/errors.rb
77
+ - lib/ruby_llm_mesh/providers/anthropic.rb
78
+ - lib/ruby_llm_mesh/providers/base.rb
79
+ - lib/ruby_llm_mesh/providers/local_node.rb
80
+ - lib/ruby_llm_mesh/providers/openai.rb
81
+ - lib/ruby_llm_mesh/rag/chunker.rb
82
+ - lib/ruby_llm_mesh/rag/embeddings.rb
83
+ - lib/ruby_llm_mesh/rag/tools.rb
84
+ - lib/ruby_llm_mesh/railtie.rb
85
+ - lib/ruby_llm_mesh/response.rb
86
+ - lib/ruby_llm_mesh/router.rb
87
+ - lib/ruby_llm_mesh/version.rb
88
+ - ruby_llm_mesh.gemspec
89
+ - sig/ruby_llm_mesh.rbs
90
+ homepage: https://github.com/theworker02/ruby_llm_mesh
91
+ licenses:
92
+ - MIT
93
+ metadata:
94
+ homepage_uri: https://github.com/theworker02/ruby_llm_mesh
95
+ source_code_uri: https://github.com/theworker02/ruby_llm_mesh
96
+ changelog_uri: https://github.com/theworker02/ruby_llm_mesh/blob/main/CHANGELOG.md
97
+ documentation_uri: https://theworker02.github.io/ruby_llm_mesh/
98
+ bug_tracker_uri: https://github.com/theworker02/ruby_llm_mesh/issues
99
+ allowed_push_host: https://rubygems.org
100
+ rubygems_mfa_required: 'true'
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: 3.1.0
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubygems_version: 4.0.16
116
+ specification_version: 4
117
+ summary: Unified multi-provider AI routing with circuit-breaking and local fallback
118
+ for Ruby & Rails
119
+ test_files: []