use correct type hints for audio transcriptions

This commit is contained in:
Ishaan Jaff 2024-09-05 09:12:27 -07:00
parent fd4315d1da
commit 7370a994f5
13 changed files with 420 additions and 430 deletions

View file

@ -17,7 +17,7 @@ import time
import traceback
from datetime import timedelta
from enum import Enum
from typing import Any, BinaryIO, List, Literal, Optional, Union
from typing import Any, List, Literal, Optional, Union
from openai._models import BaseModel as OpenAIObject