Source code for smarter.apps.prompt.api.v1.views.providers.smarter
# pylint: disable=R0801
"""Customer API views."""
from smarter.lib.drf.views.token_authentication_helpers import (
SmarterAuthenticatedAPIView,
)
[docs]
class SmarterChatApiViewSet(SmarterAuthenticatedAPIView):
"""top-level viewset for openai api function calling"""
provider = "smarter"