Skip to content

Commit

Permalink
chat: use DEV assistant -- do not merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rmackay9 committed Dec 17, 2023
1 parent b2f4754 commit 3abc570
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def main(openai_api_key=None, assistant_name=None, model_name=None, upgrade=Fals

# use assistant name if provided, otherwise use default
if assistant_name is None:
assistant_name = "ArduPilot Vehicle Control via MAVLink"
assistant_name = "ArduPilot Vehicle Control via MAVLink DEV"

# use model name if provided, otherwise use default
if model_name is None:
Expand Down
2 changes: 1 addition & 1 deletion MAVProxy/modules/mavproxy_chat/chat_openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def check_connection(self):

# search for assistant with the expected name
for existing_assistant in my_assistants.data:
if existing_assistant.name == "ArduPilot Vehicle Control via MAVLink":
if existing_assistant.name == "ArduPilot Vehicle Control via MAVLink DEV":
self.assistant = existing_assistant
break

Expand Down

0 comments on commit 3abc570

Please sign in to comment.