We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa271f commit eda8151Copy full SHA for eda8151
spec/ruby_llm/embeddings_spec.rb
@@ -45,4 +45,18 @@
45
end
46
47
48
+
49
+ describe 'image embeddings' do
50
+ EMBEDDINGS_MODELS.each do |model_info|
51
+ model = model_info[:model]
52
+ provider = model_info[:provider]
53
54
+ input_modalities = RubyLLM.models.find(model)&.modalities&.input
55
+ next if input_modalities&.exclude?('image')
56
57
+ it "#{provider}/#{model} can handle a single image" do
58
+ skip "Image embeddings for #{provider}/#{model} are not supported by RubyLLM yet."
59
+ end
60
61
62
0 commit comments