rgbkrk / genai

What if GPT could help you notebook?
BSD 3-Clause "New" or "Revised" License
352 stars 37 forks source link

Prompt store #69

Closed rgbkrk closed 1 year ago

rgbkrk commented 1 year ago

There are currently two main prompts, designed for use in Notebooks:

The defaults used will come from the GlobalPromptStore. The user can override these defaults by passing in a custom prompt to set_exception_prompt or set_assist_prompt.

>>> from genai.prompts import set_exception_prompt
>>> set_exception_prompt("You will get an exception. Do something with it.")
rgbkrk commented 1 year ago

Closes #42