Skip to content

Commit

Permalink
fix: prompt rendering (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
lamchau authored Oct 31, 2024
1 parent aa324ce commit a43203a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/goose/cli/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def single_pass(self, initial_message: str) -> None:
initial_message (str): The initial user message to process.
"""
profile = self.profile_name or "default"
print(f"[dim]starting session | name:[cyan]{self.name}[/] profile:[cyan]{profile}[/]")
print(f"[dim]starting session | name: [cyan]{self.name}[/] profile: [cyan]{profile}[/]")
print(f"[dim]saving to {self.session_file_path}")

# Process initial message
Expand All @@ -158,7 +158,7 @@ def single_pass(self, initial_message: str) -> None:
self.exchange.add(message)
self.reply() # Process the user message

print(f"[dim]ended run | name:[cyan]{self.name}[/] profile:[cyan]{profile}[/]")
print(f"[dim]ended run | name: [cyan]{self.name}[/] profile: [cyan]{profile}[/]")
print(f"[dim]to resume: [magenta]goose session resume {self.name} --profile {profile}[/][/]")

def run(self, new_session: bool = True) -> None:
Expand Down

0 comments on commit a43203a

Please sign in to comment.