Skip to content

Commit 806b9c1

Browse files
committed
build refactor - kamangir/bolt#746
1 parent ed7fa2c commit 806b9c1

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ also works [in a notebook](./notebooks/completion.ipynb).
2424

2525
## Code Generation
2626

27-
Example notebooks to [generate a python functions](./notebooks/completion_ai_function_py.ipynb), special case for [image to image python functions](./notebooks/completion_i2i_function.ipynb), and to [write a bash script](./notebooks/completion_ai_function_bash.ipynb) to use a script, for example, [Vancouver-Watching](https://github.com/kamangir/Vancouver-Watching).
27+
Example notebooks to [generate a python functions](./notebooks/completion_ai_function_py.ipynb), special case for [image to image python functions](./notebooks/completion_i2i_function.ipynb), and to [write a bash script](./notebooks/completion_ai_function_bash.ipynb) to use a script, for example, [vancouver-watching](https://github.com/kamangir/vancouver-watching).
2828

2929
![image](./assets/completion_i2i_function.png)
3030

@@ -60,7 +60,7 @@ Implements the [OpenAI vision API](https://platform.openai.com/docs/guides/visio
6060
> GPT-4 with Vision ... `GPT-4V` or `gpt-4-vision-preview` in the API ... model ... take in images and answer questions about them
6161
> ... not stateful ... ([more](https://arash-kamangir.medium.com/%EF%B8%8F-openai-vision-1-fb3691bd095a))
6262
63-
Example use on the images ingested from the traffic cameras in downtown Vancouver, using [Vancouver-Watching 🌈](https://github.com/kamangir/Vancouver-Watching),
63+
Example use on the images ingested from the traffic cameras in downtown Vancouver, using [vancouver-watching 🌈](https://github.com/kamangir/vancouver-watching),
6464

6565
```bash
6666
@openai vision \

openai_commands/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44

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

7-
VERSION = "3.15.1"
7+
VERSION = "3.16.1"
8+
9+
REPO_NAME = "openai-commands"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from openai_commands import NAME, VERSION, DESCRIPTION
1+
from openai_commands import NAME, VERSION, DESCRIPTION, REPO_NAME
22
from blueness.pypi import setup
33

44
setup(
55
filename=__file__,
6-
repo_name="openai-commands",
6+
repo_name=REPO_NAME,
77
name=NAME,
88
version=VERSION,
99
description=DESCRIPTION,

0 commit comments

Comments
 (0)