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 7fbfc48 commit 49206b8Copy full SHA for 49206b8
app/routes/generate.py
@@ -4,7 +4,7 @@
4
import json
5
from app.services.actions_loader import actions_loader
6
7
-router = APIRouter(prefix="/api/v2", tags=["generate"])
+router = APIRouter(prefix="/api", tags=["generate"])
8
9
class GenerateRequest(BaseModel):
10
action_ids: List[str]
app/templates/generate.html
@@ -213,7 +213,7 @@ <h3 class="text-lg font-black text-black mb-2">🔧 Configuration Patch</h3>
213
const selectedFormats = getSelectedFormats();
214
215
// Fetch details for all selected actions and formats
216
- const response = await fetch('/api/v2/generate', {
+ const response = await fetch('/api/generate', {
217
method: 'POST',
218
headers: {
219
'Content-Type': 'application/json'
0 commit comments