Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix [number] not showing in console #159

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ollama-eng.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ async def main():
global automode, conversation_history
console.print(Panel("Welcome to the Ollama Llama 3.1 Engineer Chat with Multi-Agent and Image Support!", title="Welcome", style="bold green"))
console.print("Type 'exit' to end the conversation.")
console.print("Type 'automode [number]' to enter Autonomous mode with a specific number of iterations.")
console.print("Type 'automode \\[number]' to enter Autonomous mode with a specific number of iterations.")
console.print("Type 'reset' to clear the conversation history.")
console.print("Type 'save chat' to save the conversation to a Markdown file.")
console.print("While in automode, press Ctrl+C at any time to exit the automode to return to regular chat.")
Expand Down