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 97b06d6 commit 30debabCopy full SHA for 30debab
spec/openai/client/realtime_spec.rb
@@ -3,13 +3,11 @@
3
let(:realtime) { client.realtime }
4
5
describe "#create" do
6
- context "when a model is specified" do
7
- it "uses the specified model" do
8
- custom_model = "gpt-4o-realtime-preview-2024-12-18"
9
- VCR.use_cassette("realtime_session_create_custom_model") do
10
- response = realtime.create(parameters: { model: custom_model })
11
- expect(response["model"]).to eq(custom_model)
12
- end
+ it "uses the specified model" do
+ custom_model = "gpt-4o-realtime-preview-2024-12-18"
+ VCR.use_cassette("realtime_session_create_custom_model") do
+ response = realtime.create(parameters: { model: custom_model })
+ expect(response["model"]).to eq(custom_model)
13
end
14
15
0 commit comments