Skip to content

Commit

Permalink
Merge pull request #17 from kamangir/metadata-refactor-2024-09-15-73001
Browse files Browse the repository at this point in the history
metadata-refactor
  • Loading branch information
kamangir authored Sep 15, 2024
2 parents 356097b + d7d8694 commit 339ecdd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 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.69.1-abcli-current`](https://github.com/kamangir/awesome-bash-cli), based on [`openai_commands-3.174.1`](https://github.com/kamangir/openai-commands).
built by 🌀 [`blue_options-4.73.1-abcli-metadata-2024-09-15-09097`](https://github.com/kamangir/awesome-bash-cli), based on [`openai_commands-3.177.1`](https://github.com/kamangir/openai-commands).
2 changes: 1 addition & 1 deletion openai_commands/.abcli/gpt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function openai_commands_gpt() {
local object_path=$ABCLI_OBJECT_ROOT/$object_name
mkdir -p $object_path

abcli_tag set $object_name gpt_chat
abcli_tags set $object_name gpt_chat

abcli_eval dryrun=$do_dryrun \
python3 -m openai_commands.gpt \
Expand Down
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.174.1"
VERSION = "3.177.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=iENxynT1fgxMqvI3)](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=iENxynT1fgxMqvI3) | [![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=TsAt88k3i6eDBCEg)](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-local-study-type-screening-result/workflow.gif?raw=true&random=TsAt88k3i6eDBCEg) |
| [![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=TRlpOLqQKvATv1L6)](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=TRlpOLqQKvATv1L6) | [![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=mlrzA5v5qI0uODmD)](https://kamangir-public.s3.ca-central-1.amazonaws.com/AMR-v7-test-litrev-multiple-local-study-type-screening-result/workflow.gif?raw=true&random=mlrzA5v5qI0uODmD) |

---

Expand Down
9 changes: 6 additions & 3 deletions openai_commands/tests/test_env.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
from abcli.tests import test_env
from abcli.tests.test_env import test_abcli_env
from blue_objects.tests.test_env import test_blue_objects_env

from openai_commands import env


def test_abcli_env():
test_env.test_abcli_env()
def test_required_env():
test_abcli_env()
test_blue_objects_env()


def test_openai_commands_env():
Expand Down

0 comments on commit 339ecdd

Please sign in to comment.