Skip to content

Commit 747c7a9

Browse files
committed
Minor prompt changes
1 parent b121ac9 commit 747c7a9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

aicodebot/cli.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def sidekick(request, verbose, response_token_size, files):
422422
"""
423423
setup_config()
424424

425-
console.print("This is an experimental feature", style=warning_style)
425+
console.print("This is an experimental feature.", style=warning_style)
426426

427427
# Pull in context. Right now it's just the contents of files that we passed in.
428428
# Soon, we could add vector embeddings of:
@@ -452,14 +452,13 @@ def sidekick(request, verbose, response_token_size, files):
452452
chain = LLMChain(llm=llm, prompt=prompt, memory=memory, verbose=verbose)
453453
history_file = Path.home() / ".aicodebot_request_history"
454454

455+
console.print(f"Enter a request OR (q) quit, OR (e) to edit using {editor}")
455456
while True: # continuous loop for multiple questions
456457
edited_input = None
457458
if request:
458459
human_input = request
459460
else:
460-
console.print(f"Enter a request OR (q) quit, OR (e) to edit using {editor}")
461-
462-
human_input = input_prompt("➤ ", history=FileHistory(history_file))
461+
human_input = input_prompt("🤖 ➤ ", history=FileHistory(history_file))
463462
if len(human_input) == 1:
464463
if human_input.lower() == "q":
465464
break

0 commit comments

Comments
 (0)