Update app.py
Browse files
app.py
CHANGED
|
@@ -49,9 +49,7 @@ llm_model = None
|
|
| 49 |
def respond(
|
| 50 |
message: str,
|
| 51 |
history: List[Tuple[str, str]],
|
| 52 |
-
model: str = "WizardLM-2-7B.Q6_K.gguf
|
| 53 |
-
|
| 54 |
-
", # Set default model
|
| 55 |
system_message: str = "You are a helpful assistant.",
|
| 56 |
max_tokens: int = 1024,
|
| 57 |
temperature: float = 0.7,
|
|
|
|
| 49 |
def respond(
|
| 50 |
message: str,
|
| 51 |
history: List[Tuple[str, str]],
|
| 52 |
+
model: str = "WizardLM-2-7B.Q6_K.gguf", # Set default model
|
|
|
|
|
|
|
| 53 |
system_message: str = "You are a helpful assistant.",
|
| 54 |
max_tokens: int = 1024,
|
| 55 |
temperature: float = 0.7,
|