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 9fa352c commit 0ca2699Copy full SHA for 0ca2699
bindings/ruby/README.md
@@ -87,8 +87,9 @@ whisper = Whisper::Context.new("path/to/your/model.bin")
87
Or, you can download model files:
88
89
```ruby
90
-model_uri = Whisper::Model::URI.new("http://example.net/uri/of/your/model.bin")
91
-whisper = Whisper::Context.new(model_uri)
+whisper = Whisper::Context.new("https://example.net/uri/of/your/model.bin")
+# Or
92
+whisper = Whisper::Context.new(URI("https://example.net/uri/of/your/model.bin"))
93
```
94
95
See [models][] page for details.
0 commit comments