Skip to content

Commit

Permalink
Merge pull request #2521 from jazelly/fix-benchmark-typo
Browse files Browse the repository at this point in the history
misc: fix typo in benchmark
  • Loading branch information
richbeales committed Apr 22, 2023
2 parents f04755b + fa8562b commit 5a95ead
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
pip install -r requirements.txt
- name: benchmark
run: |
python benchmark/benchmark_entrepeneur_gpt_with_undecisive_user.py
python benchmark/benchmark_entrepreneur_gpt_with_undecisive_user.py
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys


def benchmark_entrepeneur_gpt_with_difficult_user():
def benchmark_entrepreneur_gpt_with_difficult_user():
# Test case to check if the write_file command can successfully write 'Hello World' to a file
# named 'hello_world.txt'.

Expand Down Expand Up @@ -102,4 +102,4 @@ def benchmark_entrepeneur_gpt_with_difficult_user():

# Run the test case.
if __name__ == "__main__":
benchmark_entrepeneur_gpt_with_difficult_user()
benchmark_entrepreneur_gpt_with_difficult_user()

0 comments on commit 5a95ead

Please sign in to comment.