Skip to content

Commit

Permalink
fix: also backend url
Browse files Browse the repository at this point in the history
  • Loading branch information
cdirks4 committed Feb 11, 2025
1 parent 8617d21 commit dbaabdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/groq/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
)

# Include routers with prefixes
app.include_router(sources_router, prefix="/python")
app.include_router(audio_router, prefix="/python")
app.include_router(sources_router, prefix="/python/api")
app.include_router(audio_router, prefix="/python/api")

if __name__ == "__main__":
uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True)

0 comments on commit dbaabdb

Please sign in to comment.