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"
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.2.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc294e9e98ce7396048e3ed97cd1813a5e0963e1e870f3393d36221dee1509be |
|
MD5 | 48b0633d81bca66c75dd34d80dc057f6 |
|
BLAKE2b-256 | d175b33f0b7770a4a0fb7ba611951947d77aae70d3f00276b32bf740ce9afef3 |