correction du model_dump, il ne fallait pas mettre un JSON a cet endroit
This commit is contained in:
parent
b7a5da3a89
commit
37706983cd
3 changed files with 5 additions and 5 deletions
4
docker-run-macos.sh
Normal file
4
docker-run-macos.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
docker stop fabriquedoc-frontend
|
||||
docker rm fabriquedoc-frontend
|
||||
# Ce programme sert à lancer le job_dispatcher dans un docker localement pour tester
|
||||
docker run -p 8051:8051 --name fabriquedoc-frontend --network fabriquedoc --env FABRIQUEDOC_ENDPOINT=http://fabriquedoc:8000 local/fabriquedoc-frontend
|
|
@ -1,7 +1,3 @@
|
|||
#!/usr/bin/zsh
|
||||
|
||||
#!/usr/bin/zsh
|
||||
|
||||
docker stop fabriquedoc-frontend
|
||||
docker rm fabriquedoc-frontend
|
||||
# Ce programme sert à lancer le job_dispatcher dans un docker localement pour tester
|
||||
|
|
2
main.py
2
main.py
|
@ -155,7 +155,7 @@ with tab3:
|
|||
headers = {"Content-Type": "application/json"}
|
||||
# Send the POST request with the JSON data in the request body
|
||||
response = requests.get(f"{fabriquedoc_endpoint}/generer/",
|
||||
json=document_specs.model_dump_json(),
|
||||
json=document_specs.model_dump(),
|
||||
headers=headers)
|
||||
# Check the response status code
|
||||
if 200 <= response.status_code <= 299:
|
||||
|
|
Loading…
Reference in a new issue