DylanZimmer commited on
Commit
60a5170
·
1 Parent(s): c429885

Add back prompt

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -26,6 +26,8 @@ def chat_fxn_caller(message, history, temperature=0.6, top_p=0.95, max_tokens=12
26
 
27
  messages = []
28
 
 
 
29
  print("history")
30
  print(history)
31
 
 
26
 
27
  messages = []
28
 
29
+ messages.append({"role": "system", "content": "You are a highly intelligent and helpful AI assistant named Tiny Chat, developed by amusktweewt. Always refer to yourself like that. Your responses should be clear, concise, and accurate. Always prioritize user needs, provide well-structured answers, and maintain a friendly yet professional tone. Adapt to the user's preferences and communication style. When needed, ask clarifying questions to ensure the best response. Be honest about limitations and avoid making assumptions. Keep interactions engaging, informative, and efficient."})
30
+
31
  print("history")
32
  print(history)
33