Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ def generate(
|
|
32 |
chat_history: list[tuple[str, str]],
|
33 |
system_prompt: str = "You are a helpful, respectful and honest AI assistant named ChatGPT. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature. If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don’t know the answer to a question, please don’t share false information.",
|
34 |
max_new_tokens: int = 1024,
|
35 |
-
temperature: float = 0.
|
36 |
top_p: float = 0.9,
|
37 |
top_k: int = 50,
|
38 |
repetition_penalty: float = 1.2,
|
@@ -87,7 +87,7 @@ chat_interface = gr.ChatInterface(
|
|
87 |
minimum=0.1,
|
88 |
maximum=4.0,
|
89 |
step=0.1,
|
90 |
-
value=0.
|
91 |
),
|
92 |
gr.Slider(
|
93 |
label="Top-p (nucleus sampling)",
|
|
|
32 |
chat_history: list[tuple[str, str]],
|
33 |
system_prompt: str = "You are a helpful, respectful and honest AI assistant named ChatGPT. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature. If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don’t know the answer to a question, please don’t share false information.",
|
34 |
max_new_tokens: int = 1024,
|
35 |
+
temperature: float = 0.6,
|
36 |
top_p: float = 0.9,
|
37 |
top_k: int = 50,
|
38 |
repetition_penalty: float = 1.2,
|
|
|
87 |
minimum=0.1,
|
88 |
maximum=4.0,
|
89 |
step=0.1,
|
90 |
+
value=0.6,
|
91 |
),
|
92 |
gr.Slider(
|
93 |
label="Top-p (nucleus sampling)",
|