Spaces:
Running
Running
limcheekin
commited on
Commit
•
7fca658
1
Parent(s):
4e50e86
feat: added chat_format
Browse files
main.py
CHANGED
@@ -6,7 +6,8 @@ app = create_app(
|
|
6 |
Settings(
|
7 |
n_threads=2, # set to number of cpu cores
|
8 |
model="model/gguf-model.bin",
|
9 |
-
embedding=True
|
|
|
10 |
)
|
11 |
)
|
12 |
|
|
|
6 |
Settings(
|
7 |
n_threads=2, # set to number of cpu cores
|
8 |
model="model/gguf-model.bin",
|
9 |
+
embedding=True,
|
10 |
+
chat_format="openchat"
|
11 |
)
|
12 |
)
|
13 |
|