console_agent 0.1.0 → 0.3.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 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.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cortfr
@@ -88,17 +88,30 @@ extra_rdoc_files: []
88
88
  files:
89
89
  - LICENSE
90
90
  - README.md
91
+ - app/controllers/console_agent/application_controller.rb
92
+ - app/controllers/console_agent/sessions_controller.rb
93
+ - app/helpers/console_agent/sessions_helper.rb
94
+ - app/models/console_agent/session.rb
95
+ - app/views/console_agent/sessions/index.html.erb
96
+ - app/views/console_agent/sessions/show.html.erb
97
+ - app/views/layouts/console_agent/application.html.erb
98
+ - config/routes.rb
91
99
  - lib/console_agent.rb
92
100
  - lib/console_agent/configuration.rb
93
101
  - lib/console_agent/console_methods.rb
94
102
  - lib/console_agent/context_builder.rb
103
+ - lib/console_agent/engine.rb
95
104
  - lib/console_agent/executor.rb
96
105
  - lib/console_agent/providers/anthropic.rb
97
106
  - lib/console_agent/providers/base.rb
98
107
  - lib/console_agent/providers/openai.rb
99
108
  - lib/console_agent/railtie.rb
100
109
  - lib/console_agent/repl.rb
110
+ - lib/console_agent/session_logger.rb
111
+ - lib/console_agent/storage/base.rb
112
+ - lib/console_agent/storage/file_storage.rb
101
113
  - lib/console_agent/tools/code_tools.rb
114
+ - lib/console_agent/tools/memory_tools.rb
102
115
  - lib/console_agent/tools/model_tools.rb
103
116
  - lib/console_agent/tools/registry.rb
104
117
  - lib/console_agent/tools/schema_tools.rb