issue with installation and usage of promptify
I tried installing promptify in my local i get the following error "ModuleNotFoundError: No module named 'promptify.models.nlp' installed promptify as well and other relevent packages but no luck.This is the case as well with colab notebook provided please find the link below. can anyone help.
https://colab.research.google.com/drive/16DUUV72oQPxaZdGMH9xH1WbHYu6Jqk9Q?usp=sharing
I too facing the same issue. ModuleNotFoundError: No module named 'promptify.models.nlp'
same
model = OpenAI('key', model="gpt-3.5-turbo") TypeError: init() got an unexpected keyword argument 'model'
Add a code cell:
!pip3 install -r requirements.txt
Then update next cell as below:
%cd /content/Promptify import json from promptify import OpenAI from promptify import Prompter from pprint import pprint from IPython.display import Markdown, display from IPython.core.display import display, HTML