BaseRealtimeSession constructor

const BaseRealtimeSession({
  1. required String? id,
  2. required String? object,
  3. RealtimeModel? model,
  4. String? instructions,
  5. List<RealtimeFunctionTool>? tools,
  6. ToolChoice? toolChoice,
  7. num? temperature,
  8. Tracing? tracing,
})

Implementation

const BaseRealtimeSession({
  required this.id,
  required this.object,
  this.model,
  this.instructions,
  this.tools,
  this.toolChoice,
  this.temperature,
  this.tracing,
});