acnagle commited on
Commit
2d5ddc0
·
verified ·
1 Parent(s): 579c23e

Upload client.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. client.py +2 -2
client.py CHANGED
@@ -141,8 +141,8 @@ def run_interactive(client, model, max_tokens, temperature):
141
  print()
142
  print(f" Connected to {BOLD}{model}{RESET}")
143
  print(f" Type your message and press Enter. Type {BOLD}quit{RESET} or Ctrl+C to exit.")
144
- print(f" {DIM}Note: input is single-line only compose your full message before pressing Enter.{RESET}")
145
- print(f" {DIM} Please ensure that copied text is formatted as a single line before pasting.{RESET}")
146
  print()
147
 
148
  while True:
 
141
  print()
142
  print(f" Connected to {BOLD}{model}{RESET}")
143
  print(f" Type your message and press Enter. Type {BOLD}quit{RESET} or Ctrl+C to exit.")
144
+ print(f" {DIM}Note: interactive mode is single-line only. For multiline prompts,{RESET}")
145
+ print(f" {DIM} use: python client.py --prompt \"your\\nmultiline\\nprompt\"{RESET}")
146
  print()
147
 
148
  while True: