Skip to content

Commit

Permalink
Simplified tips
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianLucas committed Sep 4, 2023
1 parent c8678bd commit 4f135c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interpreter/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def chat(self, message=None, return_messages=False):
# If self.local, we actually don't use self.model
# (self.auto_run is like advanced usage, we display no messages)
if not self.local and not self.auto_run:
welcome_message += f"\n> Model set to `{self.model.upper()}`\n\n**Tips:**\n To run locally, use `interpreter --local`\n To run it with GPT-3.5 (Faster), use `interpreter --fast`"
welcome_message += f"\n> Model set to `{self.model.upper()}`\n\n**Tip:** To run locally, use `interpreter --local`"

if self.local:
welcome_message += f"\n> Model set to `Code-Llama`"
Expand Down

0 comments on commit 4f135c8

Please sign in to comment.