Variable AssistantFileStatusEnumConst

AssistantFileStatusEnum: {
    Available: "Available";
    Deleting: "Deleting";
    Processing: "Processing";
    ProcessingFailed: "ProcessingFailed";
} = ...

Enum representing the possible statuses of an assistant file.

  • Processing: The file is currently being processed and is not yet available.
  • Available: The file has been processed and is ready for use.
  • Deleting: The file is in the process of being deleted.
  • ProcessingFailed: There was an error encountered will processing.

Type declaration

  • Readonly Available: "Available"
  • Readonly Deleting: "Deleting"
  • Readonly Processing: "Processing"
  • Readonly ProcessingFailed: "ProcessingFailed"