Spaces:
Sleeping
Sleeping
Cyber Catalyst Team commited on
Commit ·
8892f96
1
Parent(s): 111ac7a
feat: use correct mistral-large-latest model ID in fallback cycles
Browse files- backend.py +2 -2
backend.py
CHANGED
|
@@ -1991,7 +1991,7 @@ async def execute_build_cycle(project_name: str, goal: str):
|
|
| 1991 |
try:
|
| 1992 |
if mistral_client:
|
| 1993 |
res = await mistral_client.chat.completions.create(
|
| 1994 |
-
model="
|
| 1995 |
messages=[{"role": "user", "content": plan_prompt}],
|
| 1996 |
max_tokens=300
|
| 1997 |
)
|
|
@@ -2127,7 +2127,7 @@ async def execute_eternity_cycle(project_name: str, goal: str):
|
|
| 2127 |
try:
|
| 2128 |
if mistral_client:
|
| 2129 |
res = await mistral_client.chat.completions.create(
|
| 2130 |
-
model="
|
| 2131 |
messages=[{"role": "user", "content": plan_prompt}],
|
| 2132 |
max_tokens=300
|
| 2133 |
)
|
|
|
|
| 1991 |
try:
|
| 1992 |
if mistral_client:
|
| 1993 |
res = await mistral_client.chat.completions.create(
|
| 1994 |
+
model="mistral-large-latest",
|
| 1995 |
messages=[{"role": "user", "content": plan_prompt}],
|
| 1996 |
max_tokens=300
|
| 1997 |
)
|
|
|
|
| 2127 |
try:
|
| 2128 |
if mistral_client:
|
| 2129 |
res = await mistral_client.chat.completions.create(
|
| 2130 |
+
model="mistral-large-latest",
|
| 2131 |
messages=[{"role": "user", "content": plan_prompt}],
|
| 2132 |
max_tokens=300
|
| 2133 |
)
|