Spaces:
Paused
Paused
CreitinGameplays
commited on
Commit
•
ce6179f
1
Parent(s):
7250fa7
Update app.py
Browse files
app.py
CHANGED
@@ -30,7 +30,7 @@ if torch.cuda.is_available():
|
|
30 |
def generate(
|
31 |
message: str,
|
32 |
chat_history: list[tuple[str, str]],
|
33 |
-
system_prompt: str,
|
34 |
max_new_tokens: int = 1024,
|
35 |
temperature: float = 0.4,
|
36 |
top_p: float = 0.9,
|
@@ -74,7 +74,7 @@ def generate(
|
|
74 |
chat_interface = gr.ChatInterface(
|
75 |
fn=generate,
|
76 |
additional_inputs=[
|
77 |
-
gr.Textbox(label="System prompt", lines=6),
|
78 |
gr.Slider(
|
79 |
label="Max new tokens",
|
80 |
minimum=1,
|
|
|
30 |
def generate(
|
31 |
message: str,
|
32 |
chat_history: list[tuple[str, str]],
|
33 |
+
system_prompt: str = "You are a helpful AI assistant named ChatGPT.",
|
34 |
max_new_tokens: int = 1024,
|
35 |
temperature: float = 0.4,
|
36 |
top_p: float = 0.9,
|
|
|
74 |
chat_interface = gr.ChatInterface(
|
75 |
fn=generate,
|
76 |
additional_inputs=[
|
77 |
+
gr.Textbox(label="System prompt", lines=6, value="You are a helpful AI assistant named ChatGPT."),
|
78 |
gr.Slider(
|
79 |
label="Max new tokens",
|
80 |
minimum=1,
|