Custom.py 317 B

1234567891011121314
  1. from __future__ import annotations
  2. from ..template import OpenaiTemplate
  3. class Custom(OpenaiTemplate):
  4. label = "Custom Provider"
  5. working = True
  6. needs_auth = False
  7. api_base = "http://localhost:8080/v1"
  8. sort_models = False
  9. class Feature(Custom):
  10. label = "Feature Provider"
  11. working = False