Spaces:
Running
Running
from django.urls import path | |
from .views import recipe_generate_route, execute_prompt_route_get | |
from .views import VisionLLMView, NIMVisionLLMView | |
urlpatterns = [ | |
path('execute_prompt_get/', execute_prompt_route_get, name='execute_prompt_get'), | |
path('recipe_generate/', recipe_generate_route, name='recipe_generate'), | |
path('vision_llm_url/', VisionLLMView.as_view()), | |
path('nim_vision_llm_url/', NIMVisionLLMView.as_view()), | |
] | |