Spaces:
Running
Running
CyberZenDev
commited on
Commit
•
6549aec
1
Parent(s):
f4dad5f
Update the default Prompt
Browse filesUpdated the prompt to allow the user to seamlesly interact with the ai
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 = "
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|