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 30debab commit af173edCopy full SHA for af173ed
spec/fixtures/cassettes/realtime_session_create_custom_model.yml renamed to spec/fixtures/cassettes/realtime_session_create.yml
spec/openai/client/realtime_spec.rb
@@ -4,10 +4,10 @@
4
5
describe "#create" do
6
it "uses the specified model" do
7
- custom_model = "gpt-4o-realtime-preview-2024-12-18"
8
- VCR.use_cassette("realtime_session_create_custom_model") do
9
- response = realtime.create(parameters: { model: custom_model })
10
- expect(response["model"]).to eq(custom_model)
+ model = "gpt-4o-realtime-preview-2024-12-18"
+ VCR.use_cassette("realtime_session_create") do
+ response = realtime.create(parameters: { model: model })
+ expect(response["model"]).to eq(model)
11
end
12
13
0 commit comments