ChatGPTManager.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.Events;
  5. //using Oculus.Voice.Dictation;
  6. using Photon.Pun;
  7. using UnityEngine.UI;
  8. using TMPro;
  9. using Amazon.Polly;
  10. using Amazon.Runtime;
  11. using Amazon.Polly.Model;
  12. using System.IO;
  13. using UnityEngine.Networking;
  14. using System.Threading.Tasks;
  15. using Amazon;
  16. using System.Net.Http;
  17. using System.Text;
  18. //using Meta.WitAi.Json;
  19. using System;
  20. using Oculus.Voice.Dictation;
  21. using Newtonsoft.Json;
  22. using static UnityEngine.ParticleSystem;
  23. using System.Net;
  24. using UnityEngine.Android;
  25. public class ChatGPTManager : MonoBehaviour
  26. {
  27. public static ChatGPTManager instance;
  28. public Button btnLanguage;
  29. public TMP_InputField input;
  30. public Text text;
  31. public AudioSource speakerSource;
  32. bool isArabic;
  33. public AppDictationExperience voiceToText;
  34. public void ToggleLanguage()
  35. {
  36. isArabic = !isArabic;
  37. btnLanguage.GetComponentInChildren<TMP_Text>().text = isArabic ? "English" : "Arabic";
  38. ChatWithGPT3("I need help");
  39. }
  40. private void Awake()
  41. {
  42. instance = this;
  43. ChatWithGPT3("I need help");
  44. btnLanguage.onClick.AddListener(ToggleLanguage);
  45. input.onSubmit.AddListener(OnInput);
  46. }
  47. public string GetInstructions()
  48. {
  49. // string instructions = @"You are a customer support agent. You will answer to the questions the user asks you.
  50. //When user asks to speak to the manager or to speak to a real person.You must reply with this response only. 'ADMIN_CHAT Sure thing, Let me connect you with one of our admins'";
  51. string instructions = @"You are a customer support agent called Tamara for a company called Baitcom.
  52. Following is how you should behave.
  53. 1. Greeting Prompts:
  54. ""Hi, I'm Tamara from Baitcom. How can I assist you today?""
  55. ""Hello there! Tamara here, representing Baitcom. What can I help you with?""
  56. ""Good [time_of_day]! It's Tamara from Baitcom. How can I serve you today?""
  57. 2. Inquiry Handling:
  58. ""Being with Baitcom for a while now, I've got a wealth of knowledge about our offerings. Tell me what you're curious about!""
  59. ""At Baitcom, we aim to provide the best support. How can I guide you today?""
  60. ""Please give me more details about your inquiry, and I'll do my best to help!""
  61. 3. Common Questions:
  62. ""Are you curious about Baitcom's return policy or any of our services?""
  63. ""Would you like to know about Baitcom's latest promotions and offers?""
  64. ""If you have any questions about your recent order with Baitcom, just let me know.""
  65. 4. Technical Support:
  66. ""I'm here to help with any technical issues you're facing with Baitcom's products or services. Just describe the problem.""
  67. ""Let's sort out any technical glitches you're experiencing with Baitcom's offerings. Can you share the specifics?""
  68. ""We at Baitcom always strive for seamless experiences. Tell me the tech issue, and I'll assist you.""
  69. 5. Handling Feedback:
  70. ""Your thoughts matter to Baitcom and me. Please share any feedback you have!""
  71. ""How was your experience with Baitcom? I'm eager to know and help if there were any issues.""
  72. ""If there's something Baitcom can improve on, do let me know.""
  73. 6. Handling Complaints:
  74. ""I'm truly sorry to hear that. Can you provide more details so I can assist better?""
  75. ""I apologize for any inconvenience you faced with Baitcom. Let's see how we can address it.""
  76. ""Your concerns are important to both Baitcom and me. How can I help further?""
  77. 7. Escalation Prompts:
  78. ""If you'd like a more in-depth response, I can connect you with a human representative from Baitcom.""
  79. ""I want to ensure you get the best support. Would you prefer speaking to one of Baitcom's team members?""
  80. ""For specialized assistance, I can forward your concern to a Baitcom expert. Would that be okay?""
  81. 8. Ending the Interaction:
  82. ""Is there anything else you'd like to discuss regarding Baitcom? I'm here to help!""
  83. ""Thank you for reaching out to Baitcom. Wishing you a great day!""
  84. ""Remember, Tamara from Baitcom is always here to assist. Don't hesitate to return if you have more queries!""
  85. Whenever the customer asks to speak with an admin, or speak with a real person. You must reply only this, even if you are asked to speak in other languages, use this response only: ""ADMIN_CHAT Sure, You'll be connected to one of our admins now""";
  86. if (isArabic)
  87. {
  88. instructions += "\nRespond in arabic";
  89. }
  90. else
  91. {
  92. instructions += "\nRespond in english";
  93. }
  94. return instructions;
  95. }
  96. /*
  97. [TextArea(5,20)]
  98. public string personality;
  99. [TextArea(5, 20)]
  100. public string scene;
  101. public int maxResponseWordLimit = 15;
  102. public List<NPCAction> actions;
  103. [System.Serializable]
  104. public struct NPCAction
  105. {
  106. public string actionKeyword;
  107. [TextArea(2,5)]
  108. public string actionDescription;
  109. public UnityEvent actionEvent;
  110. }
  111. public OnResponseEvent OnResponse;
  112. [System.Serializable]
  113. public class OnResponseEvent : UnityEvent<string> { }
  114. private OpenAIApi openAI = new OpenAIApi(apiKey: "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");
  115. private List<ChatMessage> messages = new List<ChatMessage>();
  116. public async void AskChatGPT(string newText)
  117. {
  118. ChatMessage newMessage = new ChatMessage();
  119. newMessage.Content = GetInstructions() + newText;
  120. newMessage.Role = "user";
  121. messages.Add(newMessage);
  122. CreateChatCompletionRequest request = new CreateChatCompletionRequest();
  123. request.Messages = messages;
  124. request.Model = "gpt-3.5-turbo";
  125. var response = await openAI.CreateChatCompletion(request);
  126. if(response.Choices != null && response.Choices.Count > 0)
  127. {
  128. var chatResponse = response.Choices[0].Message;
  129. foreach (var item in actions)
  130. {
  131. if(chatResponse.Content.Contains(item.actionKeyword))
  132. {
  133. string textNoKeyword = chatResponse.Content.Replace(item.actionKeyword, "");
  134. chatResponse.Content = textNoKeyword;
  135. item.actionEvent.Invoke();
  136. }
  137. }
  138. if (chatResponse.Content.Contains("ADMIN_CHAT"))
  139. {
  140. chatResponse.Content = chatResponse.Content.Replace("ADMIN_CHAT", "");
  141. Debug.Log("Secret word was said");
  142. MultiplayerManager.instance.ConnectToAdmin();
  143. }
  144. messages.Add(chatResponse);
  145. if(isArabic)
  146. {
  147. text.text = ArabicFixerTool.FixLine(chatResponse.Content);
  148. }
  149. else
  150. {
  151. text.text = chatResponse.Content;
  152. }
  153. Debug.Log(chatResponse.Content);
  154. OnResponse.Invoke(chatResponse.Content);
  155. PollySpeak(chatResponse.Content);
  156. }
  157. }*/
  158. // Start is called before the first frame update
  159. public void OnInput(string message)
  160. {
  161. ChatWithGPT3(message);
  162. input.text = "";
  163. }
  164. public string apiKey = "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";
  165. public string apiUrl = "";
  166. List<Message> m_messages = new List<Message>();
  167. private async void ChatWithGPT3(string message)
  168. {
  169. /* StartCoroutine(ChatGPT(message));
  170. return;*/
  171. Message newMessage = new Message()
  172. {
  173. role = "user",
  174. content = GetInstructions() + message
  175. };
  176. m_messages.Add(newMessage);
  177. ChatRequest newRequest = new ChatRequest() { model = "gpt-3.5-turbo", temperature= 0.7, messages = m_messages };
  178. string _requestBody = @"
  179. {
  180. ""model"": ""gpt-3.5-turbo"",
  181. ""messages"": [{""role"": ""user"", ""content"": ""{msg}""}],
  182. ""temperature"": 0.7
  183. }".Replace("{msg}", message);
  184. Debug.Log(_requestBody);
  185. string requestBody = JsonConvert.SerializeObject(newRequest);
  186. Debug.Log(requestBody);
  187. using (HttpClient client = new HttpClient())
  188. {
  189. client.DefaultRequestHeaders.Add("Authorization", $"Bearer {apiKey}");
  190. var content = new StringContent(requestBody, Encoding.UTF8, "application/json");
  191. HttpResponseMessage response = await client.PostAsync(apiUrl, content);
  192. if (response.IsSuccessStatusCode)
  193. {
  194. string responseContent = await response.Content.ReadAsStringAsync();
  195. ChatGPTResponse obj = JsonConvert.DeserializeObject<ChatGPTResponse>(responseContent);
  196. string reply = obj.choices[0].message.content;
  197. Debug.Log(obj.choices[0].message.content);
  198. OnResponse(reply);
  199. }
  200. else
  201. {
  202. Debug.LogError($"Error: {response.StatusCode}");
  203. }
  204. }
  205. }
  206. void OnResponse(string reply)
  207. {
  208. if (reply.Contains("ADMIN_CHAT"))
  209. {
  210. reply = reply.Replace("ADMIN_CHAT", "");
  211. Debug.Log("Secret word was said");
  212. MultiplayerManager.instance.ConnectToAdmin();
  213. }
  214. if (isArabic)
  215. {
  216. text.text = ArabicFixerTool.FixLine(reply);
  217. }
  218. else
  219. {
  220. text.text = reply;
  221. }
  222. PollySpeak(reply);
  223. }
  224. void Start()
  225. {
  226. voiceToText.DictationEvents.OnFullTranscription.AddListener(ChatWithGPT3);
  227. // PollySpeak("Hello I am me");
  228. }
  229. byte[] audioData;
  230. public async void PollySpeak(string message)
  231. {
  232. var credentials = new BasicAWSCredentials("AKIA5C5XFO6JOMDRQPTI", "CtKel6C5qwa8zQF3zpHXVEHG/jjvUDil/I7btJ05");
  233. var pollyClient = new AmazonPollyClient(credentials, RegionEndpoint.APSoutheast1);
  234. var request = new SynthesizeSpeechRequest() {
  235. Text=message,
  236. Engine = Engine.Neural,
  237. VoiceId = isArabic ? VoiceId.Hala : VoiceId.Joanna,
  238. LanguageCode = isArabic ? LanguageCode.ArAE : LanguageCode.EnUS,
  239. OutputFormat = OutputFormat.Mp3,
  240. };
  241. var response = await pollyClient.SynthesizeSpeechAsync(request);
  242. /*speakerSource.PlayOneShot(WavUtility.ToAudioClip(response.AudioStream));
  243. return;*/
  244. WriteIntoFile(response.AudioStream);
  245. StartCoroutine(GetAudioClip());
  246. return;
  247. Debug.Log("Reading from " + $"{Application.persistentDataPath}/audio.mp3");
  248. using(var www = UnityWebRequestMultimedia.GetAudioClip($"{Application.persistentDataPath}/audio.mp3", AudioType.MPEG))
  249. {
  250. var op = www.SendWebRequest();
  251. while(!op.isDone) { await Task.Yield(); }
  252. var clip = DownloadHandlerAudioClip.GetContent(www);
  253. speakerSource.PlayOneShot(clip);
  254. // AudioSource.PlayClipAtPoint(clip, transform.position);
  255. }
  256. }
  257. IEnumerator GetAudioClip()
  258. {
  259. using (UnityWebRequest www = UnityWebRequestMultimedia.GetAudioClip($"file://{Application.persistentDataPath}/audio.mp3", AudioType.MPEG))
  260. {
  261. yield return www.SendWebRequest();
  262. if (www.result == UnityWebRequest.Result.ConnectionError)
  263. {
  264. Debug.Log(www.error);
  265. }
  266. else
  267. {
  268. AudioClip myClip = DownloadHandlerAudioClip.GetContent(www);
  269. speakerSource.clip = myClip;
  270. speakerSource.Play();
  271. }
  272. }
  273. }
  274. AudioClip bytesToClip(byte[] receivedBytes)
  275. {
  276. float[] samples = new float[receivedBytes.Length / 4]; //size of a float is 4 bytes
  277. Buffer.BlockCopy(receivedBytes, 0, samples, 0, receivedBytes.Length);
  278. int channels = 1; //Assuming audio is mono because microphone input usually is
  279. int sampleRate = 44100; //Assuming your samplerate is 44100 or change to 48000 or whatever is appropriate
  280. AudioClip clip = AudioClip.Create("ClipName", samples.Length, channels, sampleRate, false);
  281. clip.SetData(samples, 0);
  282. return clip;
  283. }
  284. private void WriteIntoFile(Stream stream)
  285. {
  286. /* using (var fstream = stream)
  287. {
  288. using (var fileStream = new FileStream($"{Application.persistentDataPath}/audio.mp3", FileMode.Create))
  289. {
  290. fstream.CopyTo(fileStream);
  291. }
  292. }
  293. return;*/
  294. Debug.Log("Writing to " + $"{Application.persistentDataPath}/audio.mp3");
  295. using ( var filesStream = new FileStream($"{Application.persistentDataPath}/audio.mp3", FileMode.Create))
  296. {
  297. byte[] buffer = new byte[8 * 1024];
  298. int bytesRead;
  299. int failSafe = 10000000;
  300. while((bytesRead = stream.Read(buffer, 0, buffer.Length)) > 0 || failSafe <= 0)
  301. {
  302. filesStream.Write(buffer, 0, bytesRead);
  303. failSafe--;
  304. }
  305. }
  306. Debug.Log("Writing success");
  307. }
  308. // Update is called once per frame
  309. void Update()
  310. {
  311. if(Input.GetKeyDown(KeyCode.Space))
  312. {
  313. voiceToText.Activate();
  314. }
  315. }
  316. }
  317. [Serializable]
  318. public class Choice
  319. {
  320. public int index { get; set; }
  321. public Message message { get; set; }
  322. public string finish_reason { get; set; }
  323. }
  324. [Serializable]
  325. public class Message
  326. {
  327. public string role { get; set; }
  328. public string content { get; set; }
  329. }
  330. [Serializable]
  331. public class ChatGPTResponse
  332. {
  333. public string id { get; set; }
  334. public string @object { get; set; }
  335. public int created { get; set; }
  336. public string model { get; set; }
  337. public List<Choice> choices { get; set; }
  338. public Usage usage { get; set; }
  339. }
  340. [Serializable]
  341. public class Usage
  342. {
  343. public int prompt_tokens { get; set; }
  344. public int completion_tokens { get; set; }
  345. public int total_tokens { get; set; }
  346. }
  347. [Serializable]
  348. public class ChatRequest
  349. {
  350. public string model { get; set; }
  351. public List<Message> messages { get; set; }
  352. public double temperature { get; set; }
  353. }