ruby_llm_swarm 1.9.1
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +175 -0
- data/lib/generators/ruby_llm/chat_ui/chat_ui_generator.rb +187 -0
- data/lib/generators/ruby_llm/chat_ui/templates/controllers/chats_controller.rb.tt +39 -0
- data/lib/generators/ruby_llm/chat_ui/templates/controllers/messages_controller.rb.tt +24 -0
- data/lib/generators/ruby_llm/chat_ui/templates/controllers/models_controller.rb.tt +14 -0
- data/lib/generators/ruby_llm/chat_ui/templates/jobs/chat_response_job.rb.tt +12 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/chats/_chat.html.erb.tt +16 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/chats/_form.html.erb.tt +29 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/chats/index.html.erb.tt +16 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/chats/new.html.erb.tt +11 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/chats/show.html.erb.tt +23 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/messages/_content.html.erb.tt +1 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/messages/_form.html.erb.tt +21 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/messages/_message.html.erb.tt +13 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/messages/_tool_calls.html.erb.tt +7 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/messages/create.turbo_stream.erb.tt +9 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/models/_model.html.erb.tt +16 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/models/index.html.erb.tt +28 -0
- data/lib/generators/ruby_llm/chat_ui/templates/views/models/show.html.erb.tt +18 -0
- data/lib/generators/ruby_llm/generator_helpers.rb +194 -0
- data/lib/generators/ruby_llm/install/install_generator.rb +106 -0
- data/lib/generators/ruby_llm/install/templates/add_references_to_chats_tool_calls_and_messages_migration.rb.tt +9 -0
- data/lib/generators/ruby_llm/install/templates/chat_model.rb.tt +3 -0
- data/lib/generators/ruby_llm/install/templates/create_chats_migration.rb.tt +7 -0
- data/lib/generators/ruby_llm/install/templates/create_messages_migration.rb.tt +16 -0
- data/lib/generators/ruby_llm/install/templates/create_models_migration.rb.tt +45 -0
- data/lib/generators/ruby_llm/install/templates/create_tool_calls_migration.rb.tt +20 -0
- data/lib/generators/ruby_llm/install/templates/initializer.rb.tt +12 -0
- data/lib/generators/ruby_llm/install/templates/message_model.rb.tt +4 -0
- data/lib/generators/ruby_llm/install/templates/model_model.rb.tt +3 -0
- data/lib/generators/ruby_llm/install/templates/tool_call_model.rb.tt +3 -0
- data/lib/generators/ruby_llm/upgrade_to_v1_7/templates/migration.rb.tt +145 -0
- data/lib/generators/ruby_llm/upgrade_to_v1_7/upgrade_to_v1_7_generator.rb +124 -0
- data/lib/generators/ruby_llm/upgrade_to_v1_9/templates/add_v1_9_message_columns.rb.tt +15 -0
- data/lib/generators/ruby_llm/upgrade_to_v1_9/upgrade_to_v1_9_generator.rb +49 -0
- data/lib/ruby_llm/active_record/acts_as.rb +174 -0
- data/lib/ruby_llm/active_record/acts_as_legacy.rb +384 -0
- data/lib/ruby_llm/active_record/chat_methods.rb +350 -0
- data/lib/ruby_llm/active_record/message_methods.rb +81 -0
- data/lib/ruby_llm/active_record/model_methods.rb +84 -0
- data/lib/ruby_llm/aliases.json +295 -0
- data/lib/ruby_llm/aliases.rb +38 -0
- data/lib/ruby_llm/attachment.rb +220 -0
- data/lib/ruby_llm/chat.rb +816 -0
- data/lib/ruby_llm/chunk.rb +6 -0
- data/lib/ruby_llm/configuration.rb +78 -0
- data/lib/ruby_llm/connection.rb +126 -0
- data/lib/ruby_llm/content.rb +73 -0
- data/lib/ruby_llm/context.rb +29 -0
- data/lib/ruby_llm/embedding.rb +29 -0
- data/lib/ruby_llm/error.rb +84 -0
- data/lib/ruby_llm/image.rb +49 -0
- data/lib/ruby_llm/message.rb +86 -0
- data/lib/ruby_llm/mime_type.rb +71 -0
- data/lib/ruby_llm/model/info.rb +111 -0
- data/lib/ruby_llm/model/modalities.rb +22 -0
- data/lib/ruby_llm/model/pricing.rb +48 -0
- data/lib/ruby_llm/model/pricing_category.rb +46 -0
- data/lib/ruby_llm/model/pricing_tier.rb +33 -0
- data/lib/ruby_llm/model.rb +7 -0
- data/lib/ruby_llm/models.json +33198 -0
- data/lib/ruby_llm/models.rb +231 -0
- data/lib/ruby_llm/models_schema.json +168 -0
- data/lib/ruby_llm/moderation.rb +56 -0
- data/lib/ruby_llm/provider.rb +243 -0
- data/lib/ruby_llm/providers/anthropic/capabilities.rb +134 -0
- data/lib/ruby_llm/providers/anthropic/chat.rb +125 -0
- data/lib/ruby_llm/providers/anthropic/content.rb +44 -0
- data/lib/ruby_llm/providers/anthropic/embeddings.rb +20 -0
- data/lib/ruby_llm/providers/anthropic/media.rb +92 -0
- data/lib/ruby_llm/providers/anthropic/models.rb +63 -0
- data/lib/ruby_llm/providers/anthropic/streaming.rb +45 -0
- data/lib/ruby_llm/providers/anthropic/tools.rb +109 -0
- data/lib/ruby_llm/providers/anthropic.rb +36 -0
- data/lib/ruby_llm/providers/bedrock/capabilities.rb +167 -0
- data/lib/ruby_llm/providers/bedrock/chat.rb +63 -0
- data/lib/ruby_llm/providers/bedrock/media.rb +61 -0
- data/lib/ruby_llm/providers/bedrock/models.rb +98 -0
- data/lib/ruby_llm/providers/bedrock/signing.rb +831 -0
- data/lib/ruby_llm/providers/bedrock/streaming/base.rb +51 -0
- data/lib/ruby_llm/providers/bedrock/streaming/content_extraction.rb +71 -0
- data/lib/ruby_llm/providers/bedrock/streaming/message_processing.rb +67 -0
- data/lib/ruby_llm/providers/bedrock/streaming/payload_processing.rb +80 -0
- data/lib/ruby_llm/providers/bedrock/streaming/prelude_handling.rb +78 -0
- data/lib/ruby_llm/providers/bedrock/streaming.rb +18 -0
- data/lib/ruby_llm/providers/bedrock.rb +82 -0
- data/lib/ruby_llm/providers/deepseek/capabilities.rb +130 -0
- data/lib/ruby_llm/providers/deepseek/chat.rb +16 -0
- data/lib/ruby_llm/providers/deepseek.rb +30 -0
- data/lib/ruby_llm/providers/gemini/capabilities.rb +281 -0
- data/lib/ruby_llm/providers/gemini/chat.rb +454 -0
- data/lib/ruby_llm/providers/gemini/embeddings.rb +37 -0
- data/lib/ruby_llm/providers/gemini/images.rb +47 -0
- data/lib/ruby_llm/providers/gemini/media.rb +112 -0
- data/lib/ruby_llm/providers/gemini/models.rb +40 -0
- data/lib/ruby_llm/providers/gemini/streaming.rb +61 -0
- data/lib/ruby_llm/providers/gemini/tools.rb +198 -0
- data/lib/ruby_llm/providers/gemini/transcription.rb +116 -0
- data/lib/ruby_llm/providers/gemini.rb +37 -0
- data/lib/ruby_llm/providers/gpustack/chat.rb +27 -0
- data/lib/ruby_llm/providers/gpustack/media.rb +46 -0
- data/lib/ruby_llm/providers/gpustack/models.rb +90 -0
- data/lib/ruby_llm/providers/gpustack.rb +34 -0
- data/lib/ruby_llm/providers/mistral/capabilities.rb +155 -0
- data/lib/ruby_llm/providers/mistral/chat.rb +24 -0
- data/lib/ruby_llm/providers/mistral/embeddings.rb +33 -0
- data/lib/ruby_llm/providers/mistral/models.rb +48 -0
- data/lib/ruby_llm/providers/mistral.rb +32 -0
- data/lib/ruby_llm/providers/ollama/chat.rb +27 -0
- data/lib/ruby_llm/providers/ollama/media.rb +46 -0
- data/lib/ruby_llm/providers/ollama/models.rb +36 -0
- data/lib/ruby_llm/providers/ollama.rb +30 -0
- data/lib/ruby_llm/providers/openai/capabilities.rb +299 -0
- data/lib/ruby_llm/providers/openai/chat.rb +88 -0
- data/lib/ruby_llm/providers/openai/embeddings.rb +33 -0
- data/lib/ruby_llm/providers/openai/images.rb +38 -0
- data/lib/ruby_llm/providers/openai/media.rb +81 -0
- data/lib/ruby_llm/providers/openai/models.rb +39 -0
- data/lib/ruby_llm/providers/openai/moderation.rb +34 -0
- data/lib/ruby_llm/providers/openai/streaming.rb +46 -0
- data/lib/ruby_llm/providers/openai/tools.rb +98 -0
- data/lib/ruby_llm/providers/openai/transcription.rb +70 -0
- data/lib/ruby_llm/providers/openai.rb +44 -0
- data/lib/ruby_llm/providers/openai_responses.rb +395 -0
- data/lib/ruby_llm/providers/openrouter/models.rb +73 -0
- data/lib/ruby_llm/providers/openrouter.rb +26 -0
- data/lib/ruby_llm/providers/perplexity/capabilities.rb +137 -0
- data/lib/ruby_llm/providers/perplexity/chat.rb +16 -0
- data/lib/ruby_llm/providers/perplexity/models.rb +42 -0
- data/lib/ruby_llm/providers/perplexity.rb +48 -0
- data/lib/ruby_llm/providers/vertexai/chat.rb +14 -0
- data/lib/ruby_llm/providers/vertexai/embeddings.rb +32 -0
- data/lib/ruby_llm/providers/vertexai/models.rb +130 -0
- data/lib/ruby_llm/providers/vertexai/streaming.rb +14 -0
- data/lib/ruby_llm/providers/vertexai/transcription.rb +16 -0
- data/lib/ruby_llm/providers/vertexai.rb +55 -0
- data/lib/ruby_llm/railtie.rb +35 -0
- data/lib/ruby_llm/responses_session.rb +77 -0
- data/lib/ruby_llm/stream_accumulator.rb +101 -0
- data/lib/ruby_llm/streaming.rb +153 -0
- data/lib/ruby_llm/tool.rb +209 -0
- data/lib/ruby_llm/tool_call.rb +22 -0
- data/lib/ruby_llm/tool_executors.rb +125 -0
- data/lib/ruby_llm/transcription.rb +35 -0
- data/lib/ruby_llm/utils.rb +91 -0
- data/lib/ruby_llm/version.rb +5 -0
- data/lib/ruby_llm.rb +140 -0
- data/lib/tasks/models.rake +525 -0
- data/lib/tasks/release.rake +67 -0
- data/lib/tasks/ruby_llm.rake +15 -0
- data/lib/tasks/vcr.rake +92 -0
- metadata +346 -0
metadata
ADDED
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruby_llm_swarm
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.9.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Paulo Arruda
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: async-http-faraday
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0.22'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0.22'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: base64
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: event_stream_parser
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '1'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '1'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: faraday
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: 1.10.0
|
|
61
|
+
type: :runtime
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 1.10.0
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: faraday-multipart
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '1'
|
|
75
|
+
type: :runtime
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '1'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: faraday-net_http
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '1'
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '1'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: faraday-retry
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '1'
|
|
103
|
+
type: :runtime
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '1'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: marcel
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - "~>"
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '1.0'
|
|
117
|
+
type: :runtime
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - "~>"
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '1.0'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: ruby_llm-schema
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - "~>"
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: 0.2.1
|
|
131
|
+
type: :runtime
|
|
132
|
+
prerelease: false
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - "~>"
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: 0.2.1
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: zeitwerk
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - "~>"
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '2'
|
|
145
|
+
type: :runtime
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - "~>"
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '2'
|
|
152
|
+
description: Fork of RubyLLM with features to power Swarm, a multi-agent orchestration
|
|
153
|
+
framework. One beautiful Ruby API for GPT, Claude, Gemini, and more. Easily build
|
|
154
|
+
chatbots, AI agents, RAG applications, and content generators. Features chat (text,
|
|
155
|
+
images, audio, PDFs), image generation, embeddings, tools (function calling), structured
|
|
156
|
+
output, Rails integration, and streaming. Works with OpenAI, Anthropic, Google Gemini,
|
|
157
|
+
AWS Bedrock, DeepSeek, Mistral, Ollama (local models), OpenRouter, Perplexity, GPUStack,
|
|
158
|
+
and any OpenAI-compatible API. Minimal dependencies - just Faraday, Zeitwerk, and
|
|
159
|
+
Marcel.
|
|
160
|
+
email:
|
|
161
|
+
- 'parrudaj@gmail.com '
|
|
162
|
+
executables: []
|
|
163
|
+
extensions: []
|
|
164
|
+
extra_rdoc_files: []
|
|
165
|
+
files:
|
|
166
|
+
- LICENSE
|
|
167
|
+
- README.md
|
|
168
|
+
- lib/generators/ruby_llm/chat_ui/chat_ui_generator.rb
|
|
169
|
+
- lib/generators/ruby_llm/chat_ui/templates/controllers/chats_controller.rb.tt
|
|
170
|
+
- lib/generators/ruby_llm/chat_ui/templates/controllers/messages_controller.rb.tt
|
|
171
|
+
- lib/generators/ruby_llm/chat_ui/templates/controllers/models_controller.rb.tt
|
|
172
|
+
- lib/generators/ruby_llm/chat_ui/templates/jobs/chat_response_job.rb.tt
|
|
173
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/chats/_chat.html.erb.tt
|
|
174
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/chats/_form.html.erb.tt
|
|
175
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/chats/index.html.erb.tt
|
|
176
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/chats/new.html.erb.tt
|
|
177
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/chats/show.html.erb.tt
|
|
178
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/messages/_content.html.erb.tt
|
|
179
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/messages/_form.html.erb.tt
|
|
180
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/messages/_message.html.erb.tt
|
|
181
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/messages/_tool_calls.html.erb.tt
|
|
182
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/messages/create.turbo_stream.erb.tt
|
|
183
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/models/_model.html.erb.tt
|
|
184
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/models/index.html.erb.tt
|
|
185
|
+
- lib/generators/ruby_llm/chat_ui/templates/views/models/show.html.erb.tt
|
|
186
|
+
- lib/generators/ruby_llm/generator_helpers.rb
|
|
187
|
+
- lib/generators/ruby_llm/install/install_generator.rb
|
|
188
|
+
- lib/generators/ruby_llm/install/templates/add_references_to_chats_tool_calls_and_messages_migration.rb.tt
|
|
189
|
+
- lib/generators/ruby_llm/install/templates/chat_model.rb.tt
|
|
190
|
+
- lib/generators/ruby_llm/install/templates/create_chats_migration.rb.tt
|
|
191
|
+
- lib/generators/ruby_llm/install/templates/create_messages_migration.rb.tt
|
|
192
|
+
- lib/generators/ruby_llm/install/templates/create_models_migration.rb.tt
|
|
193
|
+
- lib/generators/ruby_llm/install/templates/create_tool_calls_migration.rb.tt
|
|
194
|
+
- lib/generators/ruby_llm/install/templates/initializer.rb.tt
|
|
195
|
+
- lib/generators/ruby_llm/install/templates/message_model.rb.tt
|
|
196
|
+
- lib/generators/ruby_llm/install/templates/model_model.rb.tt
|
|
197
|
+
- lib/generators/ruby_llm/install/templates/tool_call_model.rb.tt
|
|
198
|
+
- lib/generators/ruby_llm/upgrade_to_v1_7/templates/migration.rb.tt
|
|
199
|
+
- lib/generators/ruby_llm/upgrade_to_v1_7/upgrade_to_v1_7_generator.rb
|
|
200
|
+
- lib/generators/ruby_llm/upgrade_to_v1_9/templates/add_v1_9_message_columns.rb.tt
|
|
201
|
+
- lib/generators/ruby_llm/upgrade_to_v1_9/upgrade_to_v1_9_generator.rb
|
|
202
|
+
- lib/ruby_llm.rb
|
|
203
|
+
- lib/ruby_llm/active_record/acts_as.rb
|
|
204
|
+
- lib/ruby_llm/active_record/acts_as_legacy.rb
|
|
205
|
+
- lib/ruby_llm/active_record/chat_methods.rb
|
|
206
|
+
- lib/ruby_llm/active_record/message_methods.rb
|
|
207
|
+
- lib/ruby_llm/active_record/model_methods.rb
|
|
208
|
+
- lib/ruby_llm/aliases.json
|
|
209
|
+
- lib/ruby_llm/aliases.rb
|
|
210
|
+
- lib/ruby_llm/attachment.rb
|
|
211
|
+
- lib/ruby_llm/chat.rb
|
|
212
|
+
- lib/ruby_llm/chunk.rb
|
|
213
|
+
- lib/ruby_llm/configuration.rb
|
|
214
|
+
- lib/ruby_llm/connection.rb
|
|
215
|
+
- lib/ruby_llm/content.rb
|
|
216
|
+
- lib/ruby_llm/context.rb
|
|
217
|
+
- lib/ruby_llm/embedding.rb
|
|
218
|
+
- lib/ruby_llm/error.rb
|
|
219
|
+
- lib/ruby_llm/image.rb
|
|
220
|
+
- lib/ruby_llm/message.rb
|
|
221
|
+
- lib/ruby_llm/mime_type.rb
|
|
222
|
+
- lib/ruby_llm/model.rb
|
|
223
|
+
- lib/ruby_llm/model/info.rb
|
|
224
|
+
- lib/ruby_llm/model/modalities.rb
|
|
225
|
+
- lib/ruby_llm/model/pricing.rb
|
|
226
|
+
- lib/ruby_llm/model/pricing_category.rb
|
|
227
|
+
- lib/ruby_llm/model/pricing_tier.rb
|
|
228
|
+
- lib/ruby_llm/models.json
|
|
229
|
+
- lib/ruby_llm/models.rb
|
|
230
|
+
- lib/ruby_llm/models_schema.json
|
|
231
|
+
- lib/ruby_llm/moderation.rb
|
|
232
|
+
- lib/ruby_llm/provider.rb
|
|
233
|
+
- lib/ruby_llm/providers/anthropic.rb
|
|
234
|
+
- lib/ruby_llm/providers/anthropic/capabilities.rb
|
|
235
|
+
- lib/ruby_llm/providers/anthropic/chat.rb
|
|
236
|
+
- lib/ruby_llm/providers/anthropic/content.rb
|
|
237
|
+
- lib/ruby_llm/providers/anthropic/embeddings.rb
|
|
238
|
+
- lib/ruby_llm/providers/anthropic/media.rb
|
|
239
|
+
- lib/ruby_llm/providers/anthropic/models.rb
|
|
240
|
+
- lib/ruby_llm/providers/anthropic/streaming.rb
|
|
241
|
+
- lib/ruby_llm/providers/anthropic/tools.rb
|
|
242
|
+
- lib/ruby_llm/providers/bedrock.rb
|
|
243
|
+
- lib/ruby_llm/providers/bedrock/capabilities.rb
|
|
244
|
+
- lib/ruby_llm/providers/bedrock/chat.rb
|
|
245
|
+
- lib/ruby_llm/providers/bedrock/media.rb
|
|
246
|
+
- lib/ruby_llm/providers/bedrock/models.rb
|
|
247
|
+
- lib/ruby_llm/providers/bedrock/signing.rb
|
|
248
|
+
- lib/ruby_llm/providers/bedrock/streaming.rb
|
|
249
|
+
- lib/ruby_llm/providers/bedrock/streaming/base.rb
|
|
250
|
+
- lib/ruby_llm/providers/bedrock/streaming/content_extraction.rb
|
|
251
|
+
- lib/ruby_llm/providers/bedrock/streaming/message_processing.rb
|
|
252
|
+
- lib/ruby_llm/providers/bedrock/streaming/payload_processing.rb
|
|
253
|
+
- lib/ruby_llm/providers/bedrock/streaming/prelude_handling.rb
|
|
254
|
+
- lib/ruby_llm/providers/deepseek.rb
|
|
255
|
+
- lib/ruby_llm/providers/deepseek/capabilities.rb
|
|
256
|
+
- lib/ruby_llm/providers/deepseek/chat.rb
|
|
257
|
+
- lib/ruby_llm/providers/gemini.rb
|
|
258
|
+
- lib/ruby_llm/providers/gemini/capabilities.rb
|
|
259
|
+
- lib/ruby_llm/providers/gemini/chat.rb
|
|
260
|
+
- lib/ruby_llm/providers/gemini/embeddings.rb
|
|
261
|
+
- lib/ruby_llm/providers/gemini/images.rb
|
|
262
|
+
- lib/ruby_llm/providers/gemini/media.rb
|
|
263
|
+
- lib/ruby_llm/providers/gemini/models.rb
|
|
264
|
+
- lib/ruby_llm/providers/gemini/streaming.rb
|
|
265
|
+
- lib/ruby_llm/providers/gemini/tools.rb
|
|
266
|
+
- lib/ruby_llm/providers/gemini/transcription.rb
|
|
267
|
+
- lib/ruby_llm/providers/gpustack.rb
|
|
268
|
+
- lib/ruby_llm/providers/gpustack/chat.rb
|
|
269
|
+
- lib/ruby_llm/providers/gpustack/media.rb
|
|
270
|
+
- lib/ruby_llm/providers/gpustack/models.rb
|
|
271
|
+
- lib/ruby_llm/providers/mistral.rb
|
|
272
|
+
- lib/ruby_llm/providers/mistral/capabilities.rb
|
|
273
|
+
- lib/ruby_llm/providers/mistral/chat.rb
|
|
274
|
+
- lib/ruby_llm/providers/mistral/embeddings.rb
|
|
275
|
+
- lib/ruby_llm/providers/mistral/models.rb
|
|
276
|
+
- lib/ruby_llm/providers/ollama.rb
|
|
277
|
+
- lib/ruby_llm/providers/ollama/chat.rb
|
|
278
|
+
- lib/ruby_llm/providers/ollama/media.rb
|
|
279
|
+
- lib/ruby_llm/providers/ollama/models.rb
|
|
280
|
+
- lib/ruby_llm/providers/openai.rb
|
|
281
|
+
- lib/ruby_llm/providers/openai/capabilities.rb
|
|
282
|
+
- lib/ruby_llm/providers/openai/chat.rb
|
|
283
|
+
- lib/ruby_llm/providers/openai/embeddings.rb
|
|
284
|
+
- lib/ruby_llm/providers/openai/images.rb
|
|
285
|
+
- lib/ruby_llm/providers/openai/media.rb
|
|
286
|
+
- lib/ruby_llm/providers/openai/models.rb
|
|
287
|
+
- lib/ruby_llm/providers/openai/moderation.rb
|
|
288
|
+
- lib/ruby_llm/providers/openai/streaming.rb
|
|
289
|
+
- lib/ruby_llm/providers/openai/tools.rb
|
|
290
|
+
- lib/ruby_llm/providers/openai/transcription.rb
|
|
291
|
+
- lib/ruby_llm/providers/openai_responses.rb
|
|
292
|
+
- lib/ruby_llm/providers/openrouter.rb
|
|
293
|
+
- lib/ruby_llm/providers/openrouter/models.rb
|
|
294
|
+
- lib/ruby_llm/providers/perplexity.rb
|
|
295
|
+
- lib/ruby_llm/providers/perplexity/capabilities.rb
|
|
296
|
+
- lib/ruby_llm/providers/perplexity/chat.rb
|
|
297
|
+
- lib/ruby_llm/providers/perplexity/models.rb
|
|
298
|
+
- lib/ruby_llm/providers/vertexai.rb
|
|
299
|
+
- lib/ruby_llm/providers/vertexai/chat.rb
|
|
300
|
+
- lib/ruby_llm/providers/vertexai/embeddings.rb
|
|
301
|
+
- lib/ruby_llm/providers/vertexai/models.rb
|
|
302
|
+
- lib/ruby_llm/providers/vertexai/streaming.rb
|
|
303
|
+
- lib/ruby_llm/providers/vertexai/transcription.rb
|
|
304
|
+
- lib/ruby_llm/railtie.rb
|
|
305
|
+
- lib/ruby_llm/responses_session.rb
|
|
306
|
+
- lib/ruby_llm/stream_accumulator.rb
|
|
307
|
+
- lib/ruby_llm/streaming.rb
|
|
308
|
+
- lib/ruby_llm/tool.rb
|
|
309
|
+
- lib/ruby_llm/tool_call.rb
|
|
310
|
+
- lib/ruby_llm/tool_executors.rb
|
|
311
|
+
- lib/ruby_llm/transcription.rb
|
|
312
|
+
- lib/ruby_llm/utils.rb
|
|
313
|
+
- lib/ruby_llm/version.rb
|
|
314
|
+
- lib/tasks/models.rake
|
|
315
|
+
- lib/tasks/release.rake
|
|
316
|
+
- lib/tasks/ruby_llm.rake
|
|
317
|
+
- lib/tasks/vcr.rake
|
|
318
|
+
homepage: https://github.com/parruda/ruby_llm
|
|
319
|
+
licenses:
|
|
320
|
+
- MIT
|
|
321
|
+
metadata:
|
|
322
|
+
homepage_uri: https://github.com/parruda/ruby_llm
|
|
323
|
+
source_code_uri: https://github.com/parruda/ruby_llm
|
|
324
|
+
changelog_uri: https://github.com/parruda/ruby_llm/commits/main
|
|
325
|
+
documentation_uri: https://github.com/parruda/ruby_llm
|
|
326
|
+
bug_tracker_uri: https://github.com/parruda/ruby_llm/issues
|
|
327
|
+
rubygems_mfa_required: 'true'
|
|
328
|
+
rdoc_options: []
|
|
329
|
+
require_paths:
|
|
330
|
+
- lib
|
|
331
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
332
|
+
requirements:
|
|
333
|
+
- - ">="
|
|
334
|
+
- !ruby/object:Gem::Version
|
|
335
|
+
version: 3.1.3
|
|
336
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
337
|
+
requirements:
|
|
338
|
+
- - ">="
|
|
339
|
+
- !ruby/object:Gem::Version
|
|
340
|
+
version: '0'
|
|
341
|
+
requirements: []
|
|
342
|
+
rubygems_version: 3.6.9
|
|
343
|
+
specification_version: 4
|
|
344
|
+
summary: Fork of RubyLLM with features to power Swarm, a multi-agent orchestration
|
|
345
|
+
framework.
|
|
346
|
+
test_files: []
|