ruby_llm 0.1.0.pre29 → 0.1.0.pre30
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33b602ae544211e79207cf51bbfad5f1ed9c78cd1d9710d4f57916c95377bb60
|
4
|
+
data.tar.gz: 3fac0d6aed252218d7f7bd8e460f7b281c0306ca066e0194193e11a44ac8400d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa21a4d89b3704f384c257a7bcca71e42b0442b2f660ddd2c93d108f77bcf547b5d1c05101d85269abc5aab8fbe37e3bec3da8a4fd09d77f8184ed923fea0986
|
7
|
+
data.tar.gz: 5295d0c1ec5660e4ce9e7388836bbc37d82eae0ccce77a4f601f59ed91933cb2dc31b84f79f5aab3271d5b8b318aa190ca0224926a28c69a0e409ed9035db4c8
|
data/lib/ruby_llm/models.json
CHANGED
@@ -82,7 +82,7 @@
|
|
82
82
|
"provider": "anthropic",
|
83
83
|
"context_window": 100000,
|
84
84
|
"max_tokens": 4096,
|
85
|
-
"type": "
|
85
|
+
"type": "chat",
|
86
86
|
"family": "claude2",
|
87
87
|
"supports_vision": false,
|
88
88
|
"supports_functions": false,
|
@@ -98,7 +98,7 @@
|
|
98
98
|
"provider": "anthropic",
|
99
99
|
"context_window": 100000,
|
100
100
|
"max_tokens": 4096,
|
101
|
-
"type": "
|
101
|
+
"type": "chat",
|
102
102
|
"family": "claude2",
|
103
103
|
"supports_vision": false,
|
104
104
|
"supports_functions": false,
|
@@ -114,7 +114,7 @@
|
|
114
114
|
"provider": "anthropic",
|
115
115
|
"context_window": 200000,
|
116
116
|
"max_tokens": 8192,
|
117
|
-
"type": "
|
117
|
+
"type": "chat",
|
118
118
|
"family": "claude35_haiku",
|
119
119
|
"supports_vision": false,
|
120
120
|
"supports_functions": true,
|
@@ -130,7 +130,7 @@
|
|
130
130
|
"provider": "anthropic",
|
131
131
|
"context_window": 200000,
|
132
132
|
"max_tokens": 8192,
|
133
|
-
"type": "
|
133
|
+
"type": "chat",
|
134
134
|
"family": "claude35_sonnet",
|
135
135
|
"supports_vision": true,
|
136
136
|
"supports_functions": true,
|
@@ -146,7 +146,7 @@
|
|
146
146
|
"provider": "anthropic",
|
147
147
|
"context_window": 200000,
|
148
148
|
"max_tokens": 8192,
|
149
|
-
"type": "
|
149
|
+
"type": "chat",
|
150
150
|
"family": "claude35_sonnet",
|
151
151
|
"supports_vision": true,
|
152
152
|
"supports_functions": true,
|
@@ -162,7 +162,7 @@
|
|
162
162
|
"provider": "anthropic",
|
163
163
|
"context_window": 200000,
|
164
164
|
"max_tokens": 4096,
|
165
|
-
"type": "
|
165
|
+
"type": "chat",
|
166
166
|
"family": "claude3_haiku",
|
167
167
|
"supports_vision": true,
|
168
168
|
"supports_functions": true,
|
@@ -178,7 +178,7 @@
|
|
178
178
|
"provider": "anthropic",
|
179
179
|
"context_window": 200000,
|
180
180
|
"max_tokens": 4096,
|
181
|
-
"type": "
|
181
|
+
"type": "chat",
|
182
182
|
"family": "claude3_opus",
|
183
183
|
"supports_vision": true,
|
184
184
|
"supports_functions": true,
|
@@ -194,7 +194,7 @@
|
|
194
194
|
"provider": "anthropic",
|
195
195
|
"context_window": 200000,
|
196
196
|
"max_tokens": 4096,
|
197
|
-
"type": "
|
197
|
+
"type": "chat",
|
198
198
|
"family": "claude3_sonnet",
|
199
199
|
"supports_vision": true,
|
200
200
|
"supports_functions": true,
|
@@ -88,7 +88,7 @@ module RubyLLM
|
|
88
88
|
created_at: Time.parse(model['created_at']),
|
89
89
|
display_name: model['display_name'],
|
90
90
|
provider: slug,
|
91
|
-
type: model['
|
91
|
+
type: capabilities.model_type(model['id']),
|
92
92
|
family: capabilities.model_family(model['id']),
|
93
93
|
context_window: capabilities.determine_context_window(model['id']),
|
94
94
|
max_tokens: capabilities.determine_max_tokens(model['id']),
|
data/lib/ruby_llm/version.rb
CHANGED