Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Commit d4fae80

Browse files
committed
update llama to 3.3-70b
1 parent 85f1660 commit d4fae80

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ curl --location 'http://你的服务器ip:8080/v1/chat/completions' \
5858

5959
- ~~gpt-3.5-turbo~~ duckduckGO官方已移除3.5模型的支持
6060
- claude-3-haiku
61-
- llama-3.1-70b
61+
- llama-3.3-70b
6262
- mixtral-8x7b
6363
- gpt-4o-mini
6464
- o3-mini

conversion/requests/duckgo/convert.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ func ConvertAPIRequest(api_request officialtypes.APIRequest) duckgotypes.ApiRequ
1818
realModel = "gpt-4o-mini"
1919
case strings.HasPrefix(modelLower, "claude-3-haiku"):
2020
realModel = "claude-3-haiku-20240307"
21-
case strings.HasPrefix(modelLower, "llama-3.1-70b"):
22-
realModel = "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo"
21+
case strings.HasPrefix(modelLower, "llama-3.3-70b"):
22+
realModel = "meta-llama/Llama-3.3-70B-Instruct-Turbo"
2323
case strings.HasPrefix(modelLower, "mixtral-8x7b"):
2424
realModel = "mistralai/Mixtral-8x7B-Instruct-v0.1"
2525
}

web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2479,7 +2479,7 @@
24792479
<option value="gpt-4o-mini">gpt-4o-mini</option>
24802480
<option value="o3-mini">o3-mini</option>
24812481
<option value="claude-3-haiku-20240307">claude-3-haiku-20240307</option>
2482-
<option value="llama-3.1-70b">llama-3.1-70b</option>
2482+
<option value="llama-3.3-70b">llama-3.3-70b</option>
24832483
<option value="mixtral-8x7b">mixtral-8x7b</option>
24842484
</select>
24852485
</div>

0 commit comments

Comments
 (0)