soka-rails 0.0.6 → 0.0.8
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 +8 -0
- data/README.md +12 -0
- data/lib/soka/rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3399db1b3edd606aa6bc39013bb04de8811a26a777d3301e13063a04bd8b206b
|
4
|
+
data.tar.gz: 7f9a657ac405b33497f42d9c8eee873b5ed749fd79fd8cee6b30e9b7a96c99bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe67e6d91124a42feecaa96582959b911765d75e2715a5eecd2a102a37ed4d18b77cd2cb13c9401acb529d3b157b5e21a2c83807791513d3b4ed530c8bb64ab2
|
7
|
+
data.tar.gz: 36c107d4697412ccbb1399b7f20a4dbd5375a1d8b07a05c4e13dc3c5e22adb4f29582df46f31e0a243b8343f51e984040632a3fe9cd6fcdcf79c8890d75f003f
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.0.8] - 2025-08-15
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
- Update soka dependency to version 0.0.8
|
12
|
+
|
13
|
+
### Documentation
|
14
|
+
- Add model testing results and recommendations with comprehensive AI model performance comparison
|
15
|
+
|
8
16
|
## [0.0.6] - 2025-08-12
|
9
17
|
|
10
18
|
### Changed
|
data/README.md
CHANGED
@@ -464,6 +464,18 @@ Soka::Rails.configure do |config|
|
|
464
464
|
end
|
465
465
|
```
|
466
466
|
|
467
|
+
### Model Testing Results
|
468
|
+
|
469
|
+
Based on extensive testing with the Soka framework, here are the recommended models for optimal performance:
|
470
|
+
|
471
|
+
| Provider | ✅ Recommended Models | ⚠️ Not Recommended | Notes |
|
472
|
+
|----------|----------------------|-------------------|--------|
|
473
|
+
| **Gemini** | `gemini-2.5-flash-lite` ⭐<br>`gemini-2.5-pro` | `gemini-2.5-flash` | **gemini-2.5-flash-lite**: Fast, cost-effective, with good performance<br>**Avoid gemini-2.5-flash**: Often skips thinking process when using tools, directly jumps to tool usage |
|
474
|
+
| **OpenAI** | `gpt-5` <br>`gpt-5-mini` ⭐ | `gpt-5-nano` | **gpt-5-mini**: Good balance of price, speed, and effectiveness<br>**Avoid gpt-5-nano**: Can enter infinite tool-calling loops, fails to complete tasks |
|
475
|
+
| **Claude** | *To be tested* | - | Testing in progress |
|
476
|
+
|
477
|
+
⭐ = Best choice for most use cases
|
478
|
+
|
467
479
|
## Compatibility
|
468
480
|
|
469
481
|
- Ruby: >= 3.4
|
data/lib/soka/rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: soka-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jiunjiun
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 0.0.
|
39
|
+
version: 0.0.8
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 0.0.
|
46
|
+
version: 0.0.8
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: zeitwerk
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|