Spaces:
Sleeping
Sleeping
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ def generate(instruction, code):
|
|
| 13 |
{"role": "system", "content": "You are an expert Python coding assistant."},
|
| 14 |
{"role": "user", "content": f"{instruction}:\n\n{code}"}
|
| 15 |
],
|
| 16 |
-
max_tokens=
|
| 17 |
)
|
| 18 |
return response.choices[0].message.content
|
| 19 |
except Exception as e:
|
|
|
|
| 13 |
{"role": "system", "content": "You are an expert Python coding assistant."},
|
| 14 |
{"role": "user", "content": f"{instruction}:\n\n{code}"}
|
| 15 |
],
|
| 16 |
+
max_tokens=1024
|
| 17 |
)
|
| 18 |
return response.choices[0].message.content
|
| 19 |
except Exception as e:
|