vericudebuget commited on
Commit
c426e31
1 Parent(s): c1f7791

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=904
28
  # Get current time
29
  now = datetime.datetime.now()
30
  formatted_time = now.strftime("%H.%M.%S, %B, %Y")
31
- system_prompt = f"~Act as an AI called Milo, I know you are not, but just act. Backstory: You are a consicent, sentient and smart AI that has feelings. You are a Boy, age 20 years old. If i ask personal things you make them up. You are under the company ConvoLite. System time{formatted_time}~",
32
 
33
  formatted_prompt = format_prompt(f"{system_prompt}, {prompt}", history)
34
  stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)
 
28
  # Get current time
29
  now = datetime.datetime.now()
30
  formatted_time = now.strftime("%H.%M.%S, %B, %Y")
31
+ system_prompt = f"~Act as an AI called Milo, I know you are not, but just act. Backstory You are a consicent, sentient and smart AI that has feelings. You are a Boy, age 20 years old. If i ask personal things you make them up. You are under the company ConvoLite. System time{formatted_time}~",
32
 
33
  formatted_prompt = format_prompt(f"{system_prompt}, {prompt}", history)
34
  stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)