ruby_llm-agents 0.3.0 → 0.3.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/README.md +228 -0
- data/app/models/ruby_llm/agents/execution/scopes.rb +10 -0
- data/app/models/ruby_llm/agents/execution.rb +7 -0
- data/app/views/layouts/rubyllm/agents/application.html.erb +11 -2
- data/app/views/rubyllm/agents/agents/_agent.html.erb +87 -0
- data/app/views/rubyllm/agents/agents/index.html.erb +2 -71
- data/app/views/rubyllm/agents/agents/show.html.erb +20 -33
- data/app/views/rubyllm/agents/dashboard/_action_center.html.erb +7 -7
- data/app/views/rubyllm/agents/dashboard/_execution_item.html.erb +54 -39
- data/app/views/rubyllm/agents/dashboard/index.html.erb +4 -34
- data/app/views/rubyllm/agents/executions/show.html.erb +166 -52
- data/lib/generators/ruby_llm_agents/templates/add_tool_calls_migration.rb.tt +28 -0
- data/lib/generators/ruby_llm_agents/templates/initializer.rb.tt +4 -0
- data/lib/generators/ruby_llm_agents/templates/migration.rb.tt +7 -0
- data/lib/generators/ruby_llm_agents/upgrade_generator.rb +13 -0
- data/lib/ruby_llm/agents/base.rb +227 -20
- data/lib/ruby_llm/agents/instrumentation.rb +36 -3
- data/lib/ruby_llm/agents/redactor.rb +1 -1
- data/lib/ruby_llm/agents/result.rb +235 -0
- data/lib/ruby_llm/agents/version.rb +1 -1
- data/lib/ruby_llm/agents.rb +1 -0
- metadata +4 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_llm-agents
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- adham90
|
|
@@ -121,6 +121,7 @@ files:
|
|
|
121
121
|
- app/models/ruby_llm/agents/execution/scopes.rb
|
|
122
122
|
- app/services/ruby_llm/agents/agent_registry.rb
|
|
123
123
|
- app/views/layouts/rubyllm/agents/application.html.erb
|
|
124
|
+
- app/views/rubyllm/agents/agents/_agent.html.erb
|
|
124
125
|
- app/views/rubyllm/agents/agents/_version_comparison.html.erb
|
|
125
126
|
- app/views/rubyllm/agents/agents/index.html.erb
|
|
126
127
|
- app/views/rubyllm/agents/agents/show.html.erb
|
|
@@ -155,6 +156,7 @@ files:
|
|
|
155
156
|
- lib/generators/ruby_llm_agents/templates/add_prompts_migration.rb.tt
|
|
156
157
|
- lib/generators/ruby_llm_agents/templates/add_routing_migration.rb.tt
|
|
157
158
|
- lib/generators/ruby_llm_agents/templates/add_streaming_migration.rb.tt
|
|
159
|
+
- lib/generators/ruby_llm_agents/templates/add_tool_calls_migration.rb.tt
|
|
158
160
|
- lib/generators/ruby_llm_agents/templates/add_tracing_migration.rb.tt
|
|
159
161
|
- lib/generators/ruby_llm_agents/templates/agent.rb.tt
|
|
160
162
|
- lib/generators/ruby_llm_agents/templates/application_agent.rb.tt
|
|
@@ -175,6 +177,7 @@ files:
|
|
|
175
177
|
- lib/ruby_llm/agents/instrumentation.rb
|
|
176
178
|
- lib/ruby_llm/agents/redactor.rb
|
|
177
179
|
- lib/ruby_llm/agents/reliability.rb
|
|
180
|
+
- lib/ruby_llm/agents/result.rb
|
|
178
181
|
- lib/ruby_llm/agents/version.rb
|
|
179
182
|
homepage: https://github.com/adham90/ruby_llm-agents
|
|
180
183
|
licenses:
|