|
@@ -1161,31 +1161,31 @@ export default {
|
|
|
|
|
|
// })
|
|
|
_historyMessage.push({ role: "user", content: _text });
|
|
|
- // let params = JSON.stringify({
|
|
|
- // model: "gpt-3.5-turbo",
|
|
|
- // temperature: 0,
|
|
|
- // max_tokens: 4096,
|
|
|
- // top_p: 1,
|
|
|
- // frequency_penalty: 0,
|
|
|
- // presence_penalty: 0,
|
|
|
- // messages: _historyMessage,
|
|
|
- // uid: _uuid,
|
|
|
- // mind_map_question: "",
|
|
|
- // });
|
|
|
let params = JSON.stringify({
|
|
|
- message: {
|
|
|
- anthropic_version: "bedrock-2023-05-31",
|
|
|
- max_tokens: 4096,
|
|
|
- temperature: 0,
|
|
|
- top_p: 1,
|
|
|
- messages: _historyMessage,
|
|
|
- },
|
|
|
+ model: "gpt-3.5-turbo",
|
|
|
+ temperature: 0,
|
|
|
+ max_tokens: 4096,
|
|
|
+ top_p: 1,
|
|
|
+ frequency_penalty: 0,
|
|
|
+ presence_penalty: 0,
|
|
|
+ messages: _historyMessage,
|
|
|
uid: _uuid,
|
|
|
- model: "Claude 3 Sonnet", // Claude 3 Sonnet或者Claude 3 Haiku
|
|
|
+ mind_map_question: "",
|
|
|
});
|
|
|
+ // let params = JSON.stringify({
|
|
|
+ // message: {
|
|
|
+ // anthropic_version: "bedrock-2023-05-31",
|
|
|
+ // max_tokens: 4096,
|
|
|
+ // temperature: 0,
|
|
|
+ // top_p: 1,
|
|
|
+ // messages: _historyMessage,
|
|
|
+ // },
|
|
|
+ // uid: _uuid,
|
|
|
+ // model: "Claude 3 Sonnet", // Claude 3 Sonnet或者Claude 3 Haiku
|
|
|
+ // });
|
|
|
this.ajax
|
|
|
- // .post("https://gpt4.cocorobo.cn/chat", params)
|
|
|
- .post("https://claude3.cocorobo.cn/chat", params)
|
|
|
+ .post("https://gpt4.cocorobo.cn/chat", params)
|
|
|
+ // .post("https://claude3.cocorobo.cn/chat", params)
|
|
|
.then((res) => {
|
|
|
if (res.data.FunctionResponse.result == "发送成功") {
|
|
|
} else {
|
|
@@ -1199,10 +1199,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
getAiContent(_uid) {
|
|
|
- let _source = new EventSource(
|
|
|
- `https://claude3.cocorobo.cn/streamChat/${_uid}`
|
|
|
- );
|
|
|
- // let _source = new EventSource(`https://gpt4.cocorobo.cn/stream/${_uid}`); //http://gpt4.cocorobo.cn:8011/stream/ https://gpt4.cocorobo.cn/stream/
|
|
|
+ // let _source = new EventSource(
|
|
|
+ // `https://claude3.cocorobo.cn/streamChat/${_uid}`
|
|
|
+ // );
|
|
|
+ let _source = new EventSource(`https://gpt4.cocorobo.cn/stream/${_uid}`); //http://gpt4.cocorobo.cn:8011/stream/ https://gpt4.cocorobo.cn/stream/
|
|
|
let _allText = "";
|
|
|
let _mdText = "";
|
|
|
const md = new MarkdownIt();
|