Skip to content

Commit 617db0d

Browse files
committed
Fix bug
1 parent dea58f5 commit 617db0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/function/api/v1/endpoints/sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ async def post_predict(
1414
data: SampleRequest,
1515
) -> SampleResponse:
1616
logger.info(f"Received request: {data}")
17-
return SampleResponse(output=f"Hello ${data.input}")
17+
return SampleResponse(output=f"Hello {data.input}")

0 commit comments

Comments
 (0)