We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb21bb commit 78a29b4Copy full SHA for 78a29b4
api/urls.py
@@ -38,17 +38,17 @@
38
path("search/aimodel/", search_aimodel.SearchAIModel.as_view(), name="search_aimodel"),
39
path("search/unified/", search_unified.UnifiedSearch.as_view(), name="search_unified"),
40
path(
41
- "aimodels/<uuid:model_id>/",
+ "aimodels/<model_id>/",
42
aimodel_detail.AIModelDetailView.as_view(),
43
name="aimodel_detail",
44
),
45
46
- "aimodels/<uuid:model_id>/call/",
+ "aimodels/<model_id>/call/",
47
aimodel_execution.call_aimodel,
48
name="aimodel_call",
49
50
51
- "aimodels/<uuid:model_id>/call-async/",
+ "aimodels/<model_id>/call-async/",
52
aimodel_execution.call_aimodel_async,
53
name="aimodel_call_async",
54
0 commit comments