"""FastGPT Python SDK A Python client library for interacting with FastGPT's OpenAPI. """ from fastgpt_client.client import AppClient, ChatClient, FastGPTClient from fastgpt_client.exceptions import ( APIError, AuthenticationError, FastGPTError, RateLimitError, StreamParseError, ValidationError, ) __all__ = [ # Synchronous clients "FastGPTClient", "ChatClient", "AppClient", # Exceptions "FastGPTError", "APIError", "AuthenticationError", "RateLimitError", "ValidationError", "StreamParseError", ] __version__ = "0.1.0"