forked from GraesonB/ChatGPT-Wrapper-For-Unity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrompt.cs
32 lines (30 loc) · 958 Bytes
/
Prompt.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
namespace ChatGPTWrapper {
public class Prompt
{
private string _initialPrompt;
private string _chatbotName;
public Prompt(string chatbotName, string initialPrompt) {
_initialPrompt = initialPrompt;
_chatbotName = chatbotName;
}
private string _currentPrompt;
public string CurrentPrompt { get { return _currentPrompt; } }
public enum Speaker {
User,
Bot
}
public void AppendText(Speaker speaker, string text)
{
if (_currentPrompt == null) _currentPrompt = _initialPrompt;
switch (speaker)
{
case Speaker.User:
_currentPrompt += " \n User: " + text + " \n " + _chatbotName + ": ";
break;
case Speaker.Bot:
_currentPrompt += text;
break;
}
}
}
}