python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
FastAPI and Axios POST request misconfiguration
I have a FastAPI backend configured as such:
@app.post("/engines/completions")
async def read_completions(
# engine_id:str,
prompt: Optional[str] = None,
max_tokens: Optional[int...
trisimix
Votes: 0
Answers: 2
Problem with uvicorn when I ran FastAPI code
I have this error when I run uvicorn for each FastAPI codes :
ModuleNotFoundError: No module named 'h11._receivebuffer'
But I installed h11 with pip.
Thanks for your help.

amir123ef
Votes: 0
Answers: 2
Reload routes in FastAPI during runtime
I have a FastAPI app in which routes are dynamically generated based on an DB config.
However, once the routes are defined and the app running, if the config changes, there seems to be no way to reloa...

ibi0tux
Votes: 0
Answers: 1
"Type 'manage.py help ' for help on a specific subcommand" - Error solving python with IIS
I'm trying to run a django project with IIS on Windows server, I've already modified handler mapings and FastCGI Settings -> image statusIt should be running at this point. There's any error but th...

Jose Torres
Votes: 0
Answers: 0