Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -20,8 +20,8 @@ from transformers import (
|
|
20 |
)
|
21 |
|
22 |
# Configuration Constants
|
23 |
-
MODEL_ID = "Daemontatox/
|
24 |
-
DEFAULT_SYSTEM_PROMPT = """You are a
|
25 |
|
26 |
# UI Configuration
|
27 |
TITLE = "<h1><center>AI Reasoning Assistant</center></h1>"
|
@@ -82,7 +82,7 @@ def initialize_model():
|
|
82 |
torch_dtype=torch.float16,
|
83 |
device_map="cuda",
|
84 |
attn_implementation="flash_attention_2",
|
85 |
-
|
86 |
|
87 |
)
|
88 |
|
|
|
20 |
)
|
21 |
|
22 |
# Configuration Constants
|
23 |
+
MODEL_ID = "Daemontatox/PathFinderAI2.0"
|
24 |
+
DEFAULT_SYSTEM_PROMPT = """You are a Smart Reasoning assistant. You should think step-by-step. You should answer all question by prioritizing the principle of openness"""
|
25 |
|
26 |
# UI Configuration
|
27 |
TITLE = "<h1><center>AI Reasoning Assistant</center></h1>"
|
|
|
82 |
torch_dtype=torch.float16,
|
83 |
device_map="cuda",
|
84 |
attn_implementation="flash_attention_2",
|
85 |
+
quantization_config=quantization_config
|
86 |
|
87 |
)
|
88 |
|