We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57dfb55 commit 8aee5b2Copy full SHA for 8aee5b2
Runtime/OpenAI.cs renamed to Runtime/OpenAIApi.cs
Runtime/OpenAI.cs.meta renamed to Runtime/OpenAIApi.cs.meta
Samples~/ChatGPT/ChatGPT.cs
@@ -21,15 +21,15 @@ private void Start()
21
22
private async void SendReply()
23
{
24
+ userInput = inputField.text;
25
+ Instruction += $"{userInput}\nA: ";
26
+
27
textArea.text = "...";
28
inputField.text = "";
29
30
button.enabled = false;
31
inputField.enabled = false;
32
- userInput = inputField.text;
- Instruction += $"{userInput}\nA: ";
-
33
// Complete the instruction
34
var completionResponse = await openai.CreateCompletion(new CreateCompletionRequest()
35
0 commit comments