Spaces:
Runtime error
Runtime error
File size: 511 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
class AssistantIdNotSet(Exception):
"""Exception raised when the assistant.id is not set."""
pass
class ThreadIdNotSet(Exception):
"""Exception raised when the thread.id is not set."""
pass
class MessageIdNotSet(Exception):
"""Exception raised when the message.id is not set."""
pass
class RunIdNotSet(Exception):
"""Exception raised when the run.id is not set."""
pass
class FileIdNotSet(Exception):
"""Exception raised when the file.id is not set."""
pass
|