File tree 2 files changed +10
-10
lines changed
MAVProxy/modules/mavproxy_chat
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -83,12 +83,12 @@ def check_connection(self):
83
83
if self .assistant is None :
84
84
print ("chat: failed to connect to OpenAI assistant" )
85
85
return False
86
-
86
+
87
87
# To initialize existing thread id
88
88
assistant_thread_id_existing = None
89
89
90
90
# Check for existing thread
91
- if assistant_thread_id_existing is not None :
91
+ if assistant_thread_id_existing is not None :
92
92
self .assistant_thread = self .client .beta .threads .retrieve (assistant_thread_id_existing )
93
93
# create new thread
94
94
if self .assistant_thread is None :
@@ -105,23 +105,23 @@ def set_api_key(self, api_key_str):
105
105
self .assistant = None
106
106
self .assistant_thread = None
107
107
108
- # get the old thread and messages
108
+ # get the old thread and messages
109
109
def get_old_msg (self ):
110
110
with self .send_lock :
111
111
112
112
# check connection
113
113
if not self .check_connection ():
114
114
return "chat: failed to connect to OpenAI"
115
-
115
+
116
116
# retrieve messages on the thread
117
117
reply = ""
118
118
reply_messages = self .client .beta .threads .messages .list (self .assistant_thread .id ,
119
119
order = "asc" ,
120
- limit = 20 )
121
-
120
+ limit = 20 )
121
+
122
122
if reply_messages is None :
123
123
return "chat: failed to retrieve messages"
124
-
124
+
125
125
need_newline = False
126
126
for message in reply_messages .data :
127
127
reply = reply + message .content [0 ].text .value
Original file line number Diff line number Diff line change @@ -106,11 +106,11 @@ def apikey_set_button_click(self, event):
106
106
self .chat_openai .set_api_key (self .apikey_text_input .GetValue ())
107
107
self .chat_voice_to_text .set_api_key (self .apikey_text_input .GetValue ())
108
108
self .apikey_frame .Hide ()
109
-
110
- #initially place all old messages
109
+
110
+ # initially place all old messages
111
111
orig_text_attr = self .text_reply .GetDefaultStyle ()
112
112
old_msgs = self .chat_openai .get_old_msg ()
113
- if old_msgs :
113
+ if old_msgs :
114
114
wx .CallAfter (self .text_reply .SetDefaultStyle , orig_text_attr )
115
115
wx .CallAfter (self .text_reply .AppendText , old_msgs + "\n \n " )
116
116
You can’t perform that action at this time.
0 commit comments