AttributeError: объект «GPT4All» не имеет атрибута «chat_completion».
просто установите gpt4all 1.0.8. Не знаю, как решить эту ошибку. Спасибо за помощь. Я использую Python 3.8.
https://pypi.org/project/gpt4all/
import gpt4all
gptj=gpt4all.GPT4All("ggml-gpt4all-j-v1.3-groovy")
messages = [{"role": "user", "content": "Give me a list of 10 colors and their RGB code"}]
ret = gptj.chat_completion(messages)
print(ret)
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In[3], line 2
1 messages = [{"role": "user", "content": "Give me a list of 10 colors and their RGB code"}]
----> 2 ret = gptj.chat_completion(messages)
3 print(ret)
AttributeError: 'GPT4All' object has no attribute 'chat_completion'