Skip to content

Commit

Permalink
Navi | CLI Personality Adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKollar committed Sep 9, 2024
1 parent 8efb347 commit b68d328
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
server = "labs.saintssec.org"
local = "localhost"
port = 11434

2 changes: 1 addition & 1 deletion navi_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def llm_chat(self, user_message: str, called_from_app: bool = False) -> tuple[st
message_amendment += user_message
url = f"http://{self.server}:{self.port}/api/chat"
payload = {
"model": "navi",
"model": "navi-cli",
"messages": [{"role": "user", "content": message_amendment}]
}
headers = {'Content-Type': 'application/json'}
Expand Down

0 comments on commit b68d328

Please sign in to comment.