forked from patham9/NarsGPT
-
Notifications
You must be signed in to change notification settings - Fork 10
/
NarsGPT.py
246 lines (233 loc) · 11.9 KB
/
NarsGPT.py
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
"""
* The MIT License
*
* Copyright 2023 Patrick Hammer.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* """
import sys
from Prompts import *
from Memory import *
from openai import OpenAI
import string
import time
client = OpenAI()
usedModel = "gpt-4" #'gpt-3.5-turbo'
relevantViewSize = 30 #how many relevant (judged by statement embedding) ONA memory items GPT can see
recentViewSize = 10 #how many recent (judged by lastUsed) ONA memory items GPT can see
eternalizationDistance = 3 #how long items are treated as events before contributing to generic belief evidence in long-term memory
atomCreationThreshold = 0.95 #how different a new word needs to be to existing of same type to become a new atom
filename = "mem.json" #the system's memory file
IYouExchange = True or "NoIYouExchange" in sys.argv #whether I and you, my and your is exchanged in communication
ConsiderGPTKnowledge = False or "ConsiderGPTKnowledge" in sys.argv #Whether it should be allowed to consider GPT's knowledge too for answering a question
ImportGPTKnowledge = False or "ImportGPTKnowledge" in sys.argv #Whether it should be allowed to encode GPT's knowledge too when receiving new user input
PrintInputSentence = True and "NoPrintInputSentence" not in sys.argv
PrintTruthValues = True and "NoPrintTruthValues" not in sys.argv
PrintMemoryUpdates = False or "PrintMemoryUpdates" in sys.argv
PrintGPTPrompt = False or "PrintGPTPrompt" in sys.argv
NarseseByONA = True and "NarseseByGPT" not in sys.argv
QuestionPriming = True and "NoQuestionPriming" not in sys.argv
TimeHandling = True and "NoTimeHandling" not in sys.argv
GoalRequiresGrounding = True or "GoalRequiresGrounding" in sys.argv #whether the entire statement needs to be grounded, not just atoms
BeliefRequiresGrounding = False or "BeliefRequiresGrounding" in sys.argv #whether the entire statement needs to be grounded, not just atoms
AutoGroundNarsese = True and "NoAutoGroundNarsese" not in sys.argv #whether *ground is necessary or Narsese input suffices
DebugGrounding = False
(memory, atoms, currentTime, maxBaseId) = Memory_load(filename) #the ONA memory
NAR.AddInput("*currenttime=" str(currentTime))
NAR.AddInput("*stampid=" str(maxBaseId 1))
def I_You_Exchange(answer):
if not IYouExchange:
return answer
answer = (" " answer " ").replace("\"", " \" ").replace("?", " ?")
if " you " in answer or " your " in answer or " You " in answer or " Your " in answer:
answer = answer.replace(" you are ", " I am ").replace(" You are ", " I am ").replace(" you ", " I ").replace(" You ", " I ").strip() #replace you/your with i/my
else:
answer = answer.replace(" i am ", " you are ").replace(" I am ", " you are ").replace(" i ", " you ").replace(" I ", " you ").strip() #replace i/my with you/your
return answer.replace(" \" ", " \"").replace(" \" ", "\" ").replace(" ?", "?")
def PromptProcess(RET_DICT, inp, buf, send_prompt, isQuestion, isGoal=False, PrintAnswer=False):
if PrintGPTPrompt: print("vvvvSTART PROMPT", send_prompt, "\n^^^^END PROMPT")
while True:
try:
response = client.chat.completions.create(model=usedModel, messages=[ {"role": "user", "content": send_prompt}], max_tokens=200, temperature=0)
commands = response.choices[0].message.content.split("\n")
except Exception as e:
print("Error: API call failed, will try repeating it in 10 seconds!", str(e))
time.sleep(10) #wait 10 seconds
continue
break
if isQuestion:
commands = I_You_Exchange("\n".join(commands)).split("\n")
curTime = Memory_inject_commands(client, RET_DICT, inp, buf, currentTime, memory, atoms, commands, isQuestion, isGoal, PrintAnswer, PrintMemoryUpdates, PrintTruthValues, QuestionPriming, TimeHandling, ImportGPTKnowledge, atomCreationThreshold)
RET_DICT["GPT_Answer"] = "\n".join(commands)
return curTime
groundings = []
def ground(narsese):
if narsese.endswith(". :|:"):
narsese.replace(". :|:", "")
if narsese.endswith(".") or narsese.endswith("!") or narsese.endswith("?"):
narsese = narsese[:-1]
sentence = Term_AsSentence(narsese)
if DebugGrounding:
print("//Grounded:", narsese," <= ", sentence)
embedding = get_embedding_robust(client, sentence)
groundings.append((sentence, embedding))
lastGoal = ""
def AddInput(inp, PrintAnswer=True, Print=True, PrintInputSentenceOverride=True, PrintInputSentenceOverrideValue=False):
global currentTime, lastGoal, memory, atoms, PrintInputSentence, atomCreationThreshold
SetPrint(Print)
if PrintInputSentenceOverride:
PrintInputSentence = PrintInputSentenceOverrideValue
RET_DICT = {"GPT_Answer" : ""}
if inp == "*step" and lastGoal != "":
inp = lastGoal
if PrintInputSentence: print("Input:", inp)
if inp.startswith("//"):
return RET_DICT
if inp.startswith("*volume="): #TODO
return RET_DICT
if inp.startswith("*prompt"):
if inp.endswith("?"):
print(Memory_generate_prompt(client, currentTime, memory, "","", relevantViewSize, recentViewSize, inp[:-1].split("*prompt=")[1])[1])
else:
print(Memory_generate_prompt(client, currentTime, memory, "","", relevantViewSize, recentViewSize)[1])
return RET_DICT
if NarseseByONA and (inp.startswith("<") or inp.startswith("(") or " :|:" in inp):
if (" --> " in inp or " <-> " in inp) and " ==> " not in inp and " <=> " not in inp and " =/> " not in inp and " && " not in inp:
S, P = inp.split(" --> ") if " --> " in inp else inp.split(" <-> ")
for word in [S, P]:
terms = [x for x in ''.join(i for i in word if i in string.ascii_letters '0123456789 ').split(' ') if x != ""]
pos = "NOUN"
if word == P and " * " in S:
pos = "VERB"
if word == P and "[" in P and "]" in P:
pos == "ADJ"
for term in terms:
Atomize(client, term, atoms, pos, 1.0) #1.0 = always create new atom (Narsese encoding is a reference!)
if QuestionPriming:
if inp.endswith("?"): #query first
query(client, RET_DICT, currentTime, memory, inp[:-1].strip(), "eternal")
if AutoGroundNarsese:
ground(inp)
ret, currentTime = ProcessInput(client, RET_DICT, currentTime, memory, inp)
if "answers" in ret and ret["answers"]:
answer = ret["answers"][0]
if Print == False:
if "truth" not in answer:
print("Answer: None.")
else:
occurrenceTimeInfo = "" if answer["occurrenceTime"] == "eternal" else " t=" answer["occurrenceTime"]
print("Answer: " answer["term"] answer["punctuation"] " {" str(answer["truth"]["frequency"]) " " str(answer["truth"]["confidence"]) "}" occurrenceTimeInfo)
if not inp.endswith("?"):
Memory_Eternalize(currentTime, memory, eternalizationDistance)
Memory_store(filename, memory, atoms, currentTime)
return RET_DICT
if inp.startswith("*memory"):
for x in memory.items():
print(x[0], x[1][:-1])
return RET_DICT
if inp.startswith("*ground="):
narsese = inp.split("ground=")[1]
ground(narsese)
return RET_DICT
if inp.startswith("*time"):
print(currentTime)
return RET_DICT
if inp.startswith("*reset"):
memory = {}
atoms = {}
currentTime = 1
maxBaseId = 1
NAR.AddInput("*reset")
return RET_DICT
if inp.startswith("*buffer"):
if inp.endswith("?"):
memory_view = Memory_generate_prompt(client, currentTime, memory, "","", relevantViewSize, recentViewSize, inp[:-1].split("*buffer=")[1])[0]
for x in memory_view:
print(x[0], x[1][:-1])
else:
memory_view = Memory_generate_prompt(client, currentTime, memory, "","", relevantViewSize, recentViewSize)[0]
for x in memory_view:
print(x[0], x[1][:-1])
return RET_DICT
if inp.startswith("*concurrent"):
NAR.AddInput(inp)
currentTime -= 1
return RET_DICT
if inp.startswith("*"):
NAR.AddInput(inp)
return RET_DICT
inp = inp.lower()
if inp.endswith("?"):
buf, text = Memory_generate_prompt(client, currentTime, memory, Prompts_question_start, "\nThe question: ", relevantViewSize, recentViewSize, inp)
send_prompt = text inp[:-1] (Prompts_question_end_alternative if ConsiderGPTKnowledge else Prompts_question_end)
currentTime = PromptProcess(RET_DICT, inp, buf, send_prompt, True, PrintAnswer=PrintAnswer)
else:
if len(inp) > 0 and not inp.isdigit():
buf, text = Memory_generate_prompt(client, currentTime, memory, Prompts_belief_start, "\nThe sentence: ", relevantViewSize, recentViewSize)
isGoal = inp.endswith("!")
if isGoal:
lastGoal = inp
else:
lastGoal = ""
restore_atomCreationThreshold = atomCreationThreshold
if (isGoal and GoalRequiresGrounding) or (not isGoal and BeliefRequiresGrounding):
inp_embedding = get_embedding_robust(client, inp)
bestQual = 0.0
bestsentence = ""
for (sentence, embedding) in groundings:
matchQuality = cosine_similarity(inp_embedding, embedding)
if matchQuality > bestQual:
bestsentence = sentence
bestQual = matchQuality
if bestsentence == "":
print("//Sentence isn't grounded, rejected")
return RET_DICT
inp = bestsentence
if DebugGrounding:
print("//Reinterpreted as grounded sentence:", inp)
if isGoal:
atomCreationThreshold = -0.01 #for goals we do not allow creation of new atoms!
currentTime = PromptProcess(RET_DICT, inp, buf, text inp Prompts_belief_end, False, isGoal, PrintAnswer=PrintAnswer)
atomCreationThreshold = restore_atomCreationThreshold
else:
_, currentTime = ProcessInput(client, RET_DICT, currentTime, memory, "1" if len(inp) == 0 else inp)
Memory_Eternalize(currentTime, memory, eternalizationDistance)
Memory_store(filename, memory, atoms, currentTime)
return RET_DICT
def getNAR():
return NAR.getNAR()
def setNAR(proc):
NAR.setNAR(proc)
def terminateNAR(proc=None):
if proc is None:
proc = getNAR()
NAR.terminateNAR(proc)
def spawnNAR():
NAR.spawnNAR()
def Shell():
while True:
try:
inp = input().rstrip("\n").strip()
except:
exit(0)
AddInput(inp, PrintAnswer=True, Print=False, PrintInputSentenceOverride=True, PrintInputSentenceOverrideValue=PrintInputSentence)
if __name__ == "__main__":
Shell()
def getClient():
return client