Variable ChatModelEnumConst

ChatModelEnum: {
    ClaudeSonnet45: string;
    Gemini25Pro: string;
    Gpt41: string;
    Gpt4o: string;
    O4Mini: string;
} = ...

An enum constant representing the models that can be used for chatting with an assistant. The default is 'gpt-4o'.

This enum is provided for convenience but is not enforced. You can pass any string value as the model parameter. New models may be added by without requiring an SDK update.

Type declaration

  • ClaudeSonnet45: string
  • Gemini25Pro: string
  • Gpt41: string
  • Gpt4o: string
  • O4Mini: string