Spaces:
Runtime error
Runtime error
Create llm_config.json
Browse files- llm_config.json +9 -0
llm_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"openai": {
|
| 3 |
+
"url": "http://localhost:8081/v1/chat/completions",
|
| 4 |
+
"max_tokens": 256,
|
| 5 |
+
"temperature": 0.9,
|
| 6 |
+
"top_p": 0.95,
|
| 7 |
+
"stop": ["User:", "Assistant:"]
|
| 8 |
+
}
|
| 9 |
+
}
|