Skip to content

Commit

Permalink
clarify docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
samnoyes committed May 23, 2024
1 parent 2bdf6eb commit 0bee481
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion python/langsmith/evaluation/_arunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ async def aevaluate(
description (Optional[str]): A description of the experiment.
max_concurrency (Optional[int]): The maximum number of concurrent
evaluations to run. Defaults to None.
num_repetitions (int): The number of times to repeat the evaluation.
num_repetitions (int): The number of times to run the evaluation.
Each item in the dataset will be run and evaluated this many times.
Defaults to 1.
client (Optional[langsmith.Client]): The LangSmith client to use.
Defaults to None.
Expand Down
3 changes: 2 additions & 1 deletion python/langsmith/evaluation/_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ def evaluate(
Defaults to None.
blocking (bool): Whether to block until the evaluation is complete.
Defaults to True.
num_repetitions (int): The number of times to repeat the evaluation.
num_repetitions (int): The number of times to run the evaluation.
Each item in the dataset will be run and evaluated this many times.
Defaults to 1.
Returns:
Expand Down

0 comments on commit 0bee481

Please sign in to comment.