Skip to content

Commit f448d82

Browse files
authored
Merge pull request #10 from Troptrap/main
Llama model changed
2 parents 4f70e3a + f7270df commit f448d82

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

duck_chat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "v1.2.1"
1+
__version__ = "v1.2.2"
22
from .api import DuckChat # noqa
33
from .models import ModelType # noqa

duck_chat/models.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55

66
class ModelType(Enum):
77
Claude = "claude-3-haiku-20240307"
8-
GPT3 = "gpt-3.5-turbo-0125" # Deprecated
9-
Llama = "meta-llama/Llama-3-70b-chat-hf"
8+
Llama = "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo"
109
GPT4o = "gpt-4o-mini"
1110
Mixtral = "mistralai/Mixtral-8x7B-Instruct-v0.1"
1211

0 commit comments

Comments
 (0)