Skip to content

Commit

Permalink
Minor oops
Browse files Browse the repository at this point in the history
  • Loading branch information
uogbuji committed Nov 24, 2023
1 parent dfbc3e4 commit 38d6962
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/chat_web_selects.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ async def async_main(oapi, sites, verbose, limit, chunk_size, chunk_overlap, que
# Command line arguments defined in click decorators
@click.command()
@click.option('--verbose/--no-verbose', default=False)
@click.option('--chunk-size', default=EMBED_CHUNK_SIZE, type=int, default=200,
@click.option('--chunk-size', type=int, default=200,
help='Number of characters to include per chunk')
@click.option('--chunk-overlap', default=EMBED_CHUNK_OVERLAP, type=int, default=20,
@click.option('--chunk-overlap', type=int, default=20,
help='Number of characters to overlap at the edges of chunks')
@click.option('--limit', default=4, type=int,
help='Maximum number of chunks matched against the posed question to use as context for the LLM')
Expand Down

0 comments on commit 38d6962

Please sign in to comment.