我不确定是否有可能在一个API中有不同的聊天到chatgpt。
我的目标有几个:
- 用户可以与chatgpt对话
- 用户只能访问自己的对话我的问题是:
- 我不能区分用户之间的时刻,我找不到任何帮助。
我试着查看文档和stackoverflow并使用chatgpt,但没有任何效果。
我如何区分聊天记录?
下面的代码运行良好。
import 'dart:convert';
import 'package:flutter_dotenv/flutter_dotenv.dart';
import 'package:http/http.dart' as http;
class OpenAI {
static Future<String> chatGPT(String prompt) async {
final String url = 'https://api.openai.com/v1/chat/completions';
String? gptKey = dotenv.env['GPT'];
final response = await http.post(
Uri.parse(url),
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer $gptKey',
},
body: jsonEncode({
'model': 'gpt-3.5-turbo',
'messages': [
{'role': 'system', 'content': 'You are a helpful assistant.'},
{'role': 'user', 'content': prompt},
],
}),
);
if (response.statusCode == 200) {
final jsonResponse = jsonDecode(response.body);
final choices = jsonResponse['choices'] as List<dynamic>;
final reply = choices.first['message']['content'] as String;
// print('chatgpt response $reply');
return reply;
} else {
return 'Failed to process the request. Status code: ${response.statusCode}';
}
}
}
1条答案
按热度按时间2vuwiymt1#
请阅读这篇文章:ChatGPT