mirror of
https://github.com/deepseek-ai/Janus.git
synced 2025-02-23 14:18:58 -05:00
removes trailing slash from endpoints, which causes HTTPS redirect issues
This commit is contained in:
parent
74c9d4ea44
commit
e471403e44
@ -63,7 +63,7 @@ def multimodal_understanding(image_data, question, seed, top_p, temperature):
|
|||||||
return answer
|
return answer
|
||||||
|
|
||||||
|
|
||||||
@app.post("/understand_image_and_question/")
|
@app.post("/understand_image_and_question")
|
||||||
async def understand_image_and_question(
|
async def understand_image_and_question(
|
||||||
file: UploadFile = File(...),
|
file: UploadFile = File(...),
|
||||||
question: str = Form(...),
|
question: str = Form(...),
|
||||||
@ -152,7 +152,7 @@ def generate_image(prompt, seed, guidance):
|
|||||||
return [Image.fromarray(images[i]).resize((1024, 1024), Image.LANCZOS) for i in range(parallel_size)]
|
return [Image.fromarray(images[i]).resize((1024, 1024), Image.LANCZOS) for i in range(parallel_size)]
|
||||||
|
|
||||||
|
|
||||||
@app.post("/generate_images/")
|
@app.post("/generate_images")
|
||||||
async def generate_images(
|
async def generate_images(
|
||||||
prompt: str = Form(...),
|
prompt: str = Form(...),
|
||||||
seed: int = Form(None),
|
seed: int = Form(None),
|
||||||
|
Loading…
Reference in New Issue
Block a user