Spaces:
Sleeping
Sleeping
Rename wapp.py to app.py
Browse files- wapp.py → app.py +2 -2
wapp.py → app.py
RENAMED
|
@@ -20,7 +20,7 @@ def chat_with_bot_stream(user_input):
|
|
| 20 |
})
|
| 21 |
|
| 22 |
completion = client.chat.completions.create(
|
| 23 |
-
model="
|
| 24 |
messages=conversation_history,
|
| 25 |
temperature=1,
|
| 26 |
max_tokens=1024,
|
|
@@ -50,7 +50,7 @@ def generate_storyboard(scenario):
|
|
| 50 |
]
|
| 51 |
|
| 52 |
completion = client.chat.completions.create(
|
| 53 |
-
model="
|
| 54 |
messages=messages,
|
| 55 |
temperature=1,
|
| 56 |
max_tokens=1024,
|
|
|
|
| 20 |
})
|
| 21 |
|
| 22 |
completion = client.chat.completions.create(
|
| 23 |
+
model="llama-3.3-70b-versatile",
|
| 24 |
messages=conversation_history,
|
| 25 |
temperature=1,
|
| 26 |
max_tokens=1024,
|
|
|
|
| 50 |
]
|
| 51 |
|
| 52 |
completion = client.chat.completions.create(
|
| 53 |
+
model="llama-3.3-70b-versatile",
|
| 54 |
messages=messages,
|
| 55 |
temperature=1,
|
| 56 |
max_tokens=1024,
|