export interface OpenaiAiconfig{
  baseURL?:    string;
  apiKey?:     string;
  chatModel:   string;
  imageModel:  string;
  transcriptionModel: string;
  speechModel: string;
  speechVoice: any;
}
