Prefect integrations for working with OpenAI.
Project description
Coordinate and use AI in your dataflow with prefect-openai
Visit the full docs here to see additional examples and the API reference.
The prefect-openai
collection makes it easy to leverage the capabilities of AI in your flows. Check out the examples below to get started!
Getting Started
Summarize tracebacks with GPT3
Tracebacks--it's quintessential in programming. They are a record of every line of code leading to the error, to help us, humans, determine what's wrong with the program and find a solution.
However, tracebacks can be extraordinarily complex, especially for someone new to the codebase.
To streamline this process, we could add AI to the mix, to offer a more human-readable summary of the issue, so it's easier for the developer to understand what went wrong and implement a fix.
After installing prefect-openai
and saving an OpenAI key, you can easily incorporate OpenAI within your flows to help you achieve the aforementioned benefits!
from prefect import flow, get_run_logger
from prefect_openai import OpenAICredentials, CompletionModel
@flow
def summarize_traceback(traceback: str) -> str:
logger = get_run_logger()
openai_credentials = OpenAICredentials.load("openai-credentials")
completion_model = CompletionModel(
openai_credentials=openai_credentials,
model="text-curie-001",
max_tokens=512,
)
prompt = f"Summarize cause of error from this traceback: ```{traceback}```"
summary = completion_model.submit_prompt(traceback).choices[0]["text"]
logger.info(f"Summary of the traceback: {summary}")
return summary
if __name__ == "__main__":
traceback = """
ParameterBindError: Error binding parameters for function 'summarize_traceback': missing a required argument: 'traceback'.
Function 'summarize_traceback' has signature 'traceback: str) -> str' but received args: () and kwargs: {}.
"""
summarize_traceback(traceback)
...
12:29:32.085 | INFO | Flow run 'analytic-starling' - Finished text completion using the 'text-curie-001' model with 113 tokens, creating 1 choice(s).
12:29:32.089 | INFO | Flow run 'analytic-starling' - Summary of the traceback:
This error is caused by the missing argument traceback. The function expects a traceback object as its first argument, but received nothing.
...
Notice how the original traceback was quite long and confusing.
On the flip side, the Curie GPT3 model was able to summarize the issue eloquently!
!!! info "Built-in decorator"
No need to build this yourself, `prefect-openai` features a
[built-in decorator](completion/#prefect_openai.completion.interpret_exception)
to help you automatically catch and interpret exceptions in flows, tasks, and even
vanilla Python functions.
```python
import httpx
from prefect_openai.completion import interpret_exception
@interpret_exception("COMPLETION_MODEL_BLOCK_NAME_PLACEHOLDER")
def example_func():
resp = httpx.get("https://httpbin.org/status/403")
resp.raise_for_status()
example_func()
```
Create a story around a flow run name with GPT3 and DALL-E
Have you marveled at all the AI-generated images and wondered how others did it?
After installing prefect-openai
and saving an OpenAI key, you, too, can create AI-generated art.
Here's an example on how to create a story and an image based off a flow run name.
from prefect import flow, task, get_run_logger
from prefect.context import get_run_context
from prefect_openai import OpenAICredentials, ImageModel, CompletionModel
@task
def create_story_from_name(credentials: OpenAICredentials, flow_run_name: str) -> str:
"""
Create a fun story about the flow run name.
"""
text_model = CompletionModel(
openai_credentials=credentials, model="text-curie-001", max_tokens=288
)
text_prompt = f"Provide a fun story about a {flow_run_name}"
story = text_model.submit_prompt(text_prompt).choices[0].text.strip()
return story
@task
def create_image_from_story(credentials: OpenAICredentials, story: str) -> str:
"""
Create an image associated with the story.
"""
image_model = ImageModel(openai_credentials=credentials, size="512x512")
image_result = image_model.submit_prompt(story)
image_url = image_result.data[0]["url"]
return image_url
@flow
def create_story_and_image_from_flow_run_name() -> str:
"""
Get the flow run name and create a story and image associated with it.
"""
context = get_run_context()
flow_run_name = context.flow_run.name.replace("-", " ")
credentials = OpenAICredentials.load("openai-credentials")
story = create_story_from_name(credentials=credentials, flow_run_name=flow_run_name)
image_url = create_image_from_story(credentials=credentials, story=story)
story_and_image = (
f"The story about a {flow_run_name}: '{story}' "
f"And its image: {image_url}"
)
print(story_and_image)
return story_and_image
create_story_and_image_from_flow_run_name()
Saving an OpenAI key
It's easy to set up an OpenAICredentials
block!
- Head over to https://beta.openai.com/account/api-keys
- Login to your OpenAI account
- Click "+ Create new secret key"
- Copy the generated API key
- Create a short script, replacing the placeholders (or do so in the UI)
from prefect_openai import OpenAICredentials`
OpenAICredentials(api_key="API_KEY_PLACEHOLDER").save("BLOCK_NAME_PLACEHOLDER")
Congrats! You can now easily load the saved block, which holds your OpenAI API key:
from prefect_openai import OpenAICredentials
OpenAICredentials.load("BLOCK_NAME_PLACEHOLDER")
Visit Flow Run Name Art to see some example output!
Resources
For more tips on how to use tasks and flows in a Collection, check out Using Collections!
Installation
Install prefect-openai
with pip
:
pip install prefect-openai
Requires an installation of Python 3.7+.
We recommend using a Python virtual environment manager such as pipenv, conda or virtualenv.
These tasks are designed to work with Prefect 2.0. For more information about how to use Prefect, please refer to the Prefect documentation.
Feedback
If you encounter any bugs while using prefect-openai
, feel free to open an issue in the prefect-openai repository.
If you have any questions or issues while using prefect-openai
, you can find help in either the Prefect Discourse forum or the Prefect Slack community.
Feel free to star or watch prefect-openai
for updates too!
Contributing
If you'd like to help contribute to fix an issue or add a feature to prefect-openai
, please propose changes through a pull request from a fork of the repository.
Here are the steps:
- Fork the repository
- Clone the forked repository
- Install the repository and its dependencies:
pip install -e ".[dev]"
- Make desired changes
- Add tests
- Insert an entry to CHANGELOG.md
- Install
pre-commit
to perform quality checks prior to commit:
pre-commit install
git commit
,git push
, and create a pull request
Project details
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
File details
Details for the file prefect-openai-0.2.2.tar.gz
.
File metadata
- Download URL: prefect-openai-0.2.2.tar.gz
- Upload date:
- Size: 36.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ded7492c362aaaf17ddc92254f2dc53b6c8215018d246eb2aac22443259e4918 |
|
MD5 | 01f9d65de3c9e33f4e8fe5d61e3e7091 |
|
BLAKE2b-256 | 7cd77779e7fd28d79446e494909e5eba49ea148a23ba9cb968846281ebc31c90 |
File details
Details for the file prefect_openai-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: prefect_openai-0.2.2-py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7feb0e80e7717b880b8dc363d4319bb07b6c3ed599548e702431cfabd8a8bcac |
|
MD5 | 124c385a0c86a231535b425325fdaf3f |
|
BLAKE2b-256 | 1c385e85e7a2e3df70a549e2ef552911817177903bfc0dc2bffe2bb30477002d |