console_agent 0.10.0 → 0.12.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +101 -1
- data/app/helpers/console_agent/sessions_helper.rb +14 -0
- data/app/models/console_agent/session.rb +1 -1
- data/app/views/console_agent/sessions/index.html.erb +4 -4
- data/app/views/console_agent/sessions/show.html.erb +16 -6
- data/app/views/layouts/console_agent/application.html.erb +1 -0
- data/lib/console_agent/channel/base.rb +23 -0
- data/lib/console_agent/channel/console.rb +457 -0
- data/lib/console_agent/channel/slack.rb +182 -0
- data/lib/console_agent/configuration.rb +74 -5
- data/lib/console_agent/conversation_engine.rb +1122 -0
- data/lib/console_agent/executor.rb +239 -47
- data/lib/console_agent/providers/base.rb +7 -2
- data/lib/console_agent/providers/local.rb +112 -0
- data/lib/console_agent/railtie.rb +4 -0
- data/lib/console_agent/repl.rb +26 -1291
- data/lib/console_agent/safety_guards.rb +207 -0
- data/lib/console_agent/session_logger.rb +14 -3
- data/lib/console_agent/slack_bot.rb +473 -0
- data/lib/console_agent/tools/registry.rb +48 -16
- data/lib/console_agent/version.rb +1 -1
- data/lib/console_agent.rb +17 -3
- data/lib/generators/console_agent/templates/initializer.rb +34 -1
- data/lib/tasks/console_agent.rake +7 -0
- metadata +9 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: console_agent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cortfr
|
|
@@ -98,17 +98,24 @@ files:
|
|
|
98
98
|
- app/views/layouts/console_agent/application.html.erb
|
|
99
99
|
- config/routes.rb
|
|
100
100
|
- lib/console_agent.rb
|
|
101
|
+
- lib/console_agent/channel/base.rb
|
|
102
|
+
- lib/console_agent/channel/console.rb
|
|
103
|
+
- lib/console_agent/channel/slack.rb
|
|
101
104
|
- lib/console_agent/configuration.rb
|
|
102
105
|
- lib/console_agent/console_methods.rb
|
|
103
106
|
- lib/console_agent/context_builder.rb
|
|
107
|
+
- lib/console_agent/conversation_engine.rb
|
|
104
108
|
- lib/console_agent/engine.rb
|
|
105
109
|
- lib/console_agent/executor.rb
|
|
106
110
|
- lib/console_agent/providers/anthropic.rb
|
|
107
111
|
- lib/console_agent/providers/base.rb
|
|
112
|
+
- lib/console_agent/providers/local.rb
|
|
108
113
|
- lib/console_agent/providers/openai.rb
|
|
109
114
|
- lib/console_agent/railtie.rb
|
|
110
115
|
- lib/console_agent/repl.rb
|
|
116
|
+
- lib/console_agent/safety_guards.rb
|
|
111
117
|
- lib/console_agent/session_logger.rb
|
|
118
|
+
- lib/console_agent/slack_bot.rb
|
|
112
119
|
- lib/console_agent/storage/base.rb
|
|
113
120
|
- lib/console_agent/storage/file_storage.rb
|
|
114
121
|
- lib/console_agent/tools/code_tools.rb
|
|
@@ -119,6 +126,7 @@ files:
|
|
|
119
126
|
- lib/console_agent/version.rb
|
|
120
127
|
- lib/generators/console_agent/install_generator.rb
|
|
121
128
|
- lib/generators/console_agent/templates/initializer.rb
|
|
129
|
+
- lib/tasks/console_agent.rake
|
|
122
130
|
homepage: https://github.com/cortfr/console_agent
|
|
123
131
|
licenses:
|
|
124
132
|
- MIT
|