Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Sep 14, 2024
1 parent 5b78d9a commit 3d30347
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ to use on [AWS SageMaker](https://aws.amazon.com/sagemaker/) replace `<plugin-na

[![pylint](https://github.com/kamangir/openai-commands/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/openai-commands/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/openai-commands/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/openai-commands/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/openai-commands/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/openai-commands/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/openai-commands.svg)](https://pypi.org/project/openai-commands/)

built by 🌀 [`blue_options-4.65.1-abcli-blue-objects-attempt-2-b-2024-09-07-99677`](https://github.com/kamangir/awesome-bash-cli), based on [`openai_commands-3.164.1`](https://github.com/kamangir/openai-commands).
built by 🌀 [`blue_options-4.69.1-abcli-blue-objects-attempt-2-b-2024-09-07-99677`](https://github.com/kamangir/awesome-bash-cli), based on [`openai_commands-3.165.1`](https://github.com/kamangir/openai-commands).
2 changes: 1 addition & 1 deletion openai_commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

DESCRIPTION = f"{ICON} a command interface to the OpenAI API."

VERSION = "3.164.1"
VERSION = "3.165.1"

REPO_NAME = "openai-commands"

Expand Down
2 changes: 1 addition & 1 deletion openai_commands/literature_review/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ literature review at scale on [AWS Batch](https://aws.amazon.com/batch/) through
| | |
| --- | --- |
| [aws_batch](https://github.com/kamangir/notebooks-and-scripts/tree/main/notebooks_and_scripts/workflow/runners/aws_batch.py) | [local](https://github.com/kamangir/notebooks-and-scripts/tree/main/notebooks_and_scripts/workflow/runners/local.py) |
| [![image](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-aws_batch-study-type-screening-result/workflow.gif?raw=true&random=DVBAv8uv37c33svR)](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-aws_batch-study-type-screening-result/workflow.gif?raw=true&random=DVBAv8uv37c33svR) | [![image](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-local-study-type-screening-result/workflow.gif?raw=true&random=nMTp1zPCLmVmJ2BR)](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-local-study-type-screening-result/workflow.gif?raw=true&random=nMTp1zPCLmVmJ2BR) |
| [![image](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-aws_batch-study-type-screening-result/workflow.gif?raw=true&random=WiqWA2HYlv36c9CQ)](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-aws_batch-study-type-screening-result/workflow.gif?raw=true&random=WiqWA2HYlv36c9CQ) | [![image](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-local-study-type-screening-result/workflow.gif?raw=true&random=e0sN4blfX1jsEf8r)](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-local-study-type-screening-result/workflow.gif?raw=true&random=e0sN4blfX1jsEf8r) |

---

Expand Down
2 changes: 1 addition & 1 deletion openai_commands/literature_review/combination.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def combine(
object_name_2,
)

if not file.exist(filename_2):
if not file.exists(filename_2):
logger.warning(
"missing in object-2 [{}]: {}".format(
object_name_2,
Expand Down
2 changes: 1 addition & 1 deletion openai_commands/literature_review/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def review_literature(
f"{filename}.csv",
input_object_name,
)
if not overwrite and file.exist(output_filename):
if not overwrite and file.exists(output_filename):
logger.info(
"continuing from a previous run: {} ...".format(file.name(output_filename))
)
Expand Down
2 changes: 1 addition & 1 deletion openai_commands/tests/test_gpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_interact_with_openai(prompt: str):
assert success
assert answer

assert file.exist(
assert file.exists(
os.path.join(object_path, f"{object_name}.yaml"),
)

Expand Down

0 comments on commit 3d30347

Please sign in to comment.