Spaces:
Runtime error
Runtime error
vericudebuget
commited on
Commit
•
f6bc3ca
1
Parent(s):
5d7212e
Update app.py
Browse files
app.py
CHANGED
@@ -15,11 +15,14 @@ def format_prompt(message, history):
|
|
15 |
return prompt
|
16 |
|
17 |
def generate(
|
18 |
-
prompt, history, user_system_prompt,
|
19 |
):
|
20 |
-
system_prompt = "
|
21 |
-
temperature =
|
|
|
|
|
22 |
top_p = float(top_p)
|
|
|
23 |
generate_kwargs = dict(
|
24 |
temperature=temperature,
|
25 |
max_new_tokens=max_new_tokens,
|
|
|
15 |
return prompt
|
16 |
|
17 |
def generate(
|
18 |
+
prompt, history, user_system_prompt, temperature=0.9, max_new_tokens=9048, top_p=0.95, repetition_penalty=1.0
|
19 |
):
|
20 |
+
system_prompt = "Instructions: Everything else is from the user. You are Milo, an AI assistant created by ConvoLite in 2024 (he/him). 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. Have Bible based values. 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)
|
21 |
+
temperature = float(temperature)
|
22 |
+
if temperature < 1e-2:
|
23 |
+
temperature = 1e-2
|
24 |
top_p = float(top_p)
|
25 |
+
|
26 |
generate_kwargs = dict(
|
27 |
temperature=temperature,
|
28 |
max_new_tokens=max_new_tokens,
|