Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ def predict(message, history):
|
|
28 |
|
29 |
# Create a chat completion request and send it to the API server
|
30 |
stream = client.chat.completions.create(
|
31 |
-
model="
|
32 |
messages=history_openai_format, # Chat history
|
33 |
temperature=0.1, # Temperature for text generation
|
34 |
stream=True, # Stream response
|
|
|
28 |
|
29 |
# Create a chat completion request and send it to the API server
|
30 |
stream = client.chat.completions.create(
|
31 |
+
model="way2call/way2call-7b-evaluation-instruct", # Model name to use
|
32 |
messages=history_openai_format, # Chat history
|
33 |
temperature=0.1, # Temperature for text generation
|
34 |
stream=True, # Stream response
|