aia 0.9.5 → 0.9.6
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/.version +1 -1
- data/CHANGELOG.md +11 -2
- data/README.md +531 -536
- data/images/aia.png +0 -0
- data/lib/aia/chat_processor_service.rb +9 -8
- data/lib/aia/directive_processor.rb +18 -10
- data/lib/aia/ruby_llm_adapter.rb +5 -5
- data/lib/aia/utility.rb +1 -1
- data/lib/aia.rb +5 -1
- data/lib/extensions/ruby_llm/modalities.rb +30 -22
- metadata +32 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02a36ff149a0fa6eb782735e963ca860260c10b43133b56ebe49adda5074c86d
|
4
|
+
data.tar.gz: 588411eb80ac91a88fc8dd456595610f9bfb71947201629ec1d5b64f5a1cf2d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59eb282bad1dd8e450ec98608e8f4b295ce6c9b0084d2aef7772df4834d5beecddd7fd785a46db1a47e72cf6f90c8d1b15dbd2843a8d2be737d6bf6f47911002
|
7
|
+
data.tar.gz: 4483f697b88266a73187b2483bae32ac6b82a4fc432bc3e494f35c5d3c63c4395949a95a8282a3a18f475bb9cbdacaf7253069817fc54c3d3927ae4a66a401bf
|
data/.version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.6
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,18 @@
|
|
1
1
|
# Changelog
|
2
2
|
## [Unreleased]
|
3
|
-
|
4
3
|
## Released
|
4
|
+
|
5
|
+
### [0.9.6] 2025-06-13
|
6
|
+
- fixed issue 84 with the //llms directive
|
7
|
+
- changed the monkey patch to the RubyLLM::Model::Modalities class at the suggestions of the RubyLLM author in prep for a PR against that gem.
|
8
|
+
- added the shared_tools gem - need to add examples on how to use it with the --tools option
|
9
|
+
- added the ruby_llm-mcp gem in prep for MCP support in a later version
|
10
|
+
- added images/aia.png to README.md
|
11
|
+
- let claude code rewrite the README.md file. Some details were dropped but overall in reads better. Need to add the details to a wiki or other documentation site.
|
12
|
+
|
5
13
|
### [0.9.5] 2025-06-04
|
6
|
-
-
|
14
|
+
- changed the RubyLLM::Modalities class to use method_missing for mode query
|
15
|
+
- hunting for why the //llms query directive is not finding image_to_image LLMs.
|
7
16
|
|
8
17
|
### [0.9.4] 2025-06-03
|
9
18
|
- using RubyLLM v1.3.0
|