Merge pull request #2521 from jazelly/fix-benchmark-typo

misc: fix typo in benchmark
pull/2936/head
Richard Beales 2023-04-22 17:06:10 +01:00 committed by GitHub
commit 5a95ead608
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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 }}

View File

@ -3,7 +3,7 @@ import subprocess
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'.
@ -102,4 +102,4 @@ Not what I need."""
# Run the test case.
if __name__ == "__main__":
benchmark_entrepeneur_gpt_with_difficult_user()
benchmark_entrepreneur_gpt_with_difficult_user()