hyunwoongko / openchat

OpenChat: Easy to use opensource chatting framework via neural networks
Apache License 2.0
438 stars 57 forks source link

Keyword arguments in documentation don't work #43

Open CalebFenton opened 3 years ago

CalebFenton commented 3 years ago

Using openchat==1.1.12

>>> from openchat import OpenChat
... OpenChat(
...    model="blender.medium",
...    device="cpu",
...    method="top_k",
...    top_k=20,
...    no_repeat_ngram_size=3,
...    length_penalty=0.6,
... )
Traceback (most recent call last):   
  File "<stdin>", line 2, in <module>
TypeError: __init__() got an unexpected keyword argument 'method'