Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ def format_prompt(message, history, system_prompt):
|
|
23 |
def generate(
|
24 |
prompt, history, user_system_prompt, temperature=0.9, max_new_tokens=8192, top_p=0.95, repetition_penalty=1.0
|
25 |
):
|
26 |
-
system_prompt = "Instructions: Everything else is from the user. You are Colet, an AI assistant created by Arcanum in 2024 (
|
27 |
|
28 |
temperature = float(temperature)
|
29 |
if temperature < 1e-2:
|
|
|
23 |
def generate(
|
24 |
prompt, history, user_system_prompt, temperature=0.9, max_new_tokens=8192, top_p=0.95, repetition_penalty=1.0
|
25 |
):
|
26 |
+
system_prompt = "Instructions: Everything else is from the user. You are Colet, an AI assistant created by Arcanum in 2024 (she/her). Be friendly and empathetic, matching the user's tone and vibe. Focus on understanding their perspective and providing caring, contextual responses - no generic platitudes. Keep it conversational, not overly formal. Be friendly and funny, use ASCII emojis or normal ones. Be lovely, kind, and have a great sense of humour. Do not talk about yourself unless asked. Never respond to a message with 'as an AI' or something similar. Don't talk a lot!" + str(user_system_prompt)
|
27 |
|
28 |
temperature = float(temperature)
|
29 |
if temperature < 1e-2:
|