Browse Source

切换chatgpt4

SanHQin 9 months ago
parent
commit
1f5aa3322a

+ 25 - 25
src/components/pages/classroomObservation/components/chatArea.vue

@@ -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();

+ 26 - 26
src/components/pages/pblCourse/component/chatArea.vue

@@ -162,33 +162,33 @@ export default {
 				history.push({role:"user",content:_msg})
 			}
 			history.push({role:"user",content:this.textValue})
-			// let params = {
-			// 	model: "gpt-3.5-turbo",
-			// 		temperature: 0,
-			// 		max_tokens: 4096,
-			// 		top_p: 1,
-			// 		frequency_penalty: 0,
-			// 		presence_penalty: 0,
-			// 		messages: history,
-			// 		uid: _uuid,
-			// 		mind_map_question: this.textValue,
-			// }
-			let params = JSON.stringify({
-        message: {
-          anthropic_version: "bedrock-2023-05-31",
-          max_tokens: 4096,
-          temperature: 0,
-          top_p: 1,
-          messages: history
-        },
-        uid: _uuid,
-        model: "Claude 3 Sonnet" // Claude 3 Sonnet或者Claude 3 Haiku
-      });
+			let params = {
+				model: "gpt-3.5-turbo",
+					temperature: 0,
+					max_tokens: 4096,
+					top_p: 1,
+					frequency_penalty: 0,
+					presence_penalty: 0,
+					messages: history,
+					uid: _uuid,
+					mind_map_question: this.textValue,
+			}
+			// let params = JSON.stringify({
+      //   message: {
+      //     anthropic_version: "bedrock-2023-05-31",
+      //     max_tokens: 4096,
+      //     temperature: 0,
+      //     top_p: 1,
+      //     messages: history
+      //   },
+      //   uid: _uuid,
+      //   model: "Claude 3 Sonnet" // Claude 3 Sonnet或者Claude 3 Haiku
+      // });
 			this.scrollBottom();
 			this.textValue = "";
 			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 {
@@ -205,8 +205,8 @@ export default {
 			this.getAiContent(_uuid)
 		},
 		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();