File size: 446 Bytes
a231872
 
8243283
a231872
 
 
 
510d2c1
8243283
a231872
1
2
3
4
5
6
7
8
9
10
11
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()),
]