Skip to content

Commit 64f4924

Browse files
authored
Update create_data.py
1 parent 6e713f4 commit 64f4924

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

create_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ def main(
5151
*,
5252
input_filename: Annotated[str, typer.Option("--input-filename")],
5353
output_filename: Annotated[str, typer.Option("--output-filename")],
54-
url: Annotated[str, typer.Option("--url") = "http://localhost:8080/v1/chat/completions",
55-
concurrency: Annotated[int, typer.Option("--concurrency") = 64
54+
url: Annotated[str, typer.Option("--url")] = "http://localhost:8080/v1/chat/completions",
55+
concurrency: Annotated[int, typer.Option("--concurrency")] = 64
5656
):
5757
sem = asyncio.Semaphore(concurrency)
5858
async def _main():

0 commit comments

Comments
 (0)