We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f70e3a + f7270df commit f448d82Copy full SHA for f448d82
duck_chat/__init__.py
@@ -1,3 +1,3 @@
1
-__version__ = "v1.2.1"
+__version__ = "v1.2.2"
2
from .api import DuckChat # noqa
3
from .models import ModelType # noqa
duck_chat/models.py
@@ -5,8 +5,7 @@
5
6
class ModelType(Enum):
7
Claude = "claude-3-haiku-20240307"
8
- GPT3 = "gpt-3.5-turbo-0125" # Deprecated
9
- Llama = "meta-llama/Llama-3-70b-chat-hf"
+ Llama = "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo"
10
GPT4o = "gpt-4o-mini"
11
Mixtral = "mistralai/Mixtral-8x7B-Instruct-v0.1"
12
0 commit comments