Skip to content

Commit

Permalink
✨ feat: qwen to gpt
Browse files Browse the repository at this point in the history
  • Loading branch information
梁朝飞 committed Dec 12, 2024
1 parent 73be565 commit 54fd49a
Show file tree
Hide file tree
Showing 3 changed files with 12,661 additions and 10,160 deletions.
2 changes: 1 addition & 1 deletion docs/guide/chatgpt.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function Home() {
width: '100vw',
}}
request={async (messages) => {
const response = await fetch('/api/qwen', {
const response = await fetch('/api/gpt', {
method: 'POST',
body: JSON.stringify({ messages: messages }),
});
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/chatgpt.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function Home() {
width: '100vw',
}}
request={async (messages) => {
const response = await fetch('/api/qwen', {
const response = await fetch('/api/gpt', {
method: 'POST',
body: JSON.stringify({ messages: messages }),
});
Expand Down
Loading

0 comments on commit 54fd49a

Please sign in to comment.