Wrapper library for openai to send events to the Imaginary Programming monitor
Project description
Imaginary Dev OpenAI wrapper
Wrapper library for openai to send events to the Imaginary Programming monitor
- Free software: MIT license
- Documentation: https://im-openai.readthedocs.io.
Features
- Patches the openai library to allow user to set an ip_project_key for each request
- Works out of the box with langchain
Get Started
At startup, before any openai calls, patch the library with the following code:
from im_openai import patch_openai
patch_openai()
Then, set the ip_project_key for each request:
import openai
completion = openai.ChatCompletion.create(
engine="davinci",
prompt="This is a test",
ip_project_key="my_project_key"
)
If you're using langchain, you can set the ip_project_key in the langchain llm setup:
llm = OpenAI(
openai_api_key=os.environ["OPENAI_API_KEY"],
model_kwargs={"ip_project_key": "my_project_key"},
)
Credits
This package was created with Cookiecutter_ and the audreyr/cookiecutter-pypackage
_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _audreyr/cookiecutter-pypackage
: https://github.com/audreyr/cookiecutter-pypackage
======= History =======
0.1.0 (2023-06-20)
- First release on PyPI.
0.1.1 (2023-06-23)
- add TemplateString helper and support for data / params
0.1.2 (2023-06-23)
- add support for original template too
0.2.0 (2023-06-26)
- add explicit support for passing the "prompt template text"
0.3.0 (2023-06-28)
- add support for chat templates (as objects instead of arrays)
0.4.0 (2023-06-29)
- switch event reporting to be async / non-blocking
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for im_openai-0.4.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c3992d4bc53f53927ffb18ccf4610a839efccb1b6eb82ab1c50c59ab0a4170d |
|
MD5 | 9234ac06b77812dc02abded3aec01a3e |
|
BLAKE2b-256 | e571b62456b5ccdd3768b1fe92b161428191c914f726701a14c82d1188a9d5a0 |