Update README.md
Browse files
README.md
CHANGED
|
@@ -25,7 +25,7 @@ import sys
|
|
| 25 |
from typing import List, Dict
|
| 26 |
|
| 27 |
class ChatSession:
|
| 28 |
-
def __init__(self, model: str = "miike-ai/
|
| 29 |
self.url = "http://localhost:8000/v1/chat/completions"
|
| 30 |
self.model = model
|
| 31 |
self.messages: List[Dict[str, str]] = []
|
|
|
|
| 25 |
from typing import List, Dict
|
| 26 |
|
| 27 |
class ChatSession:
|
| 28 |
+
def __init__(self, model: str = "miike-ai/Deepseek-R1-Distill-Llama-8B-fp4"):
|
| 29 |
self.url = "http://localhost:8000/v1/chat/completions"
|
| 30 |
self.model = model
|
| 31 |
self.messages: List[Dict[str, str]] = []
|