model.py 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. """
  2. URL configuration for maxkb project.
  3. The `urlpatterns` list routes URLs to views. For more information please see:
  4. https://docs.djangoproject.com/en/4.2/topics/http/urls/
  5. Examples:
  6. Function views
  7. 1. Add an import: from my_app import views
  8. 2. Add a URL to urlpatterns: path('', views.home, name='home')
  9. Class-based views
  10. 1. Add an import: from other_app.views import Home
  11. 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
  12. Including another URLconf
  13. 1. Import the include() function: from django.urls import include, path
  14. 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
  15. """
  16. from django.urls import path, include
  17. from maxkb.const import CONFIG
  18. from models_provider.views.openai_gateway_view import OpenAIGatewayView
  19. admin_api_prefix = CONFIG.get_admin_path()[1:] + '/api/'
  20. admin_ui_prefix = CONFIG.get_admin_path()
  21. chat_api_prefix = CONFIG.get_chat_path()[1:] + '/api/'
  22. chat_ui_prefix = CONFIG.get_chat_path()
  23. urlpatterns = [
  24. path(admin_api_prefix, include("local_model.urls")),
  25. # OpenAI 兼容网关
  26. path('api/v1/chat/completions', OpenAIGatewayView.as_view()),
  27. path('api/v1/models', OpenAIGatewayView.as_view()),
  28. ]