We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e713f4 commit 64f4924Copy full SHA for 64f4924
create_data.py
@@ -51,8 +51,8 @@ def main(
51
*,
52
input_filename: Annotated[str, typer.Option("--input-filename")],
53
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
+ url: Annotated[str, typer.Option("--url")] = "http://localhost:8080/v1/chat/completions",
+ concurrency: Annotated[int, typer.Option("--concurrency")] = 64
56
):
57
sem = asyncio.Semaphore(concurrency)
58
async def _main():
0 commit comments