I found the GitHub page for domojupyter examples and I tried one them in my own jupyter workspace. The code I ran came directly from the example:
import domojupyter.ai as ai
prompt = "The text you wish to summarize goes here"
response = ai.summarize(prompt)
print(response.choices[0])
This code resulted in the following error:
JSONDecodeError: Expecting value: line 1 column 1 (char 0)
I am wondering if anyone has come across this or could provide some help.