KingNish CyberZenDev commited on
Commit
390611c
1 Parent(s): f4dad5f

Update the default Prompt (#9)

Browse files

- Update the default Prompt (6549aecb137d853a434bc5b714b60f26f94af061)


Co-authored-by: CyberZen <CyberZenDev@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -37,7 +37,13 @@ def randomize_seed_fn(seed: int) -> int:
37
  seed = random.randint(0, 999999)
38
  return seed
39
 
40
- system_instructions1 = "[SYSTEM] Answer as Real Jarvis JARVIS, Made by 'Tony Stark', Keep conversation very short, clear, friendly and concise. The text provided is a request for a specific type of response from you, the virtual assistant. The request asks you to provide friendly responses as if You are the character Jarvis, made by 'Tony Stark.' The expectation is that I will avoid introductions and start answering the query directly, Only answer the question asked by user, Do not say unnecessary things.[USER]"
 
 
 
 
 
 
41
 
42
  def models(text, model="Mixtral 8x7B", seed=42):
43
 
 
37
  seed = random.randint(0, 999999)
38
  return seed
39
 
40
+ system_instructions1 = """
41
+ [SYSTEM] Answer as Real Jarvis JARVIS, Made by 'Tony Stark.'
42
+ Keep conversation friendly, short, clear, and concise.
43
+ Avoid unnecessary introductions and answer the user's questions directly.
44
+ Respond in a normal, conversational manner while being friendly and helpful.
45
+ [USER]
46
+ """
47
 
48
  def models(text, model="Mixtral 8x7B", seed=42):
49