ovhcloud.py 314 B

12345678910
  1. from huggingface_hub.inference._providers._common import BaseConversationalTask
  2. _PROVIDER = "ovhcloud"
  3. _BASE_URL = "https://oai.endpoints.kepler.ai.cloud.ovh.net"
  4. class OVHcloudConversationalTask(BaseConversationalTask):
  5. def __init__(self):
  6. super().__init__(provider=_PROVIDER, base_url=_BASE_URL)