Skip to content

Commit d9b5dfb

Browse files
committed
fix
1 parent acb5b52 commit d9b5dfb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/elevenlabs/conversational_ai/conversation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
from typing import Callable, Optional, Awaitable, Union, Any, Literal
66
import asyncio
77
from concurrent.futures import ThreadPoolExecutor
8-
from enum import StrEnum
8+
from enum import Enum
99

1010
from websockets.sync.client import connect, ClientConnection
1111
from websockets.exceptions import ConnectionClosedOK
1212

1313
from ..base_client import BaseElevenLabs
1414

1515

16-
class ClientToOrchestratorEvent(StrEnum):
16+
class ClientToOrchestratorEvent(str, Enum):
1717
"""Event types that can be sent from client to orchestrator."""
1818
# Response to a ping request.
1919
PONG = "pong"

0 commit comments

Comments
 (0)