You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a command /model to change model
Send all history in first prompt to new model
Maybe a `/model name´ could be nice, but I don't think it's possible because DDG is cleaning the conversation when changing the model.
/model can only be implemented with clearing the chat, though... We could collect the conversation history into one first prompt and send it into a new model
First off all: nice work. The Python package is amazingly simple to use.
Unfortunately you can't switch the used model. In model/model_type.py there are four models listed. Is there a reason why in api.py Line 19 the ModelType is set to ModelType.Claude?
For anyone who is also interesed.
You can change the AI model used by the python package by changing the Model in the source code and installing the package from source:
pip uninstall duck-chat
Download the source code from github, open duck_chat/api.py and replace Claude in Line 19 with your choice of model. All possible models are listed in duck_chat/models/model_type.py. Curently there are:
Add a command
/model
to change modelSend all history in first prompt to new model
idea from PR#3
The text was updated successfully, but these errors were encountered: