Fix nested markdown blocks for Kaggle parser
Browse files- kaggle_Details.md +2 -2
kaggle_Details.md
CHANGED
|
@@ -18,13 +18,13 @@ model, tokenizer = FastLanguageModel.from_pretrained(
|
|
| 18 |
FastLanguageModel.for_inference(model)
|
| 19 |
|
| 20 |
prompt = """You are an expert code reviewer. Review the following code and output a JSON action indicating any bugs or issues you find.
|
|
|
|
| 21 |
Code:
|
| 22 |
-
```python
|
| 23 |
def process(data):
|
| 24 |
for i in data:
|
| 25 |
if i == "remove": data.remove(i)
|
| 26 |
return data
|
| 27 |
-
|
| 28 |
|
| 29 |
messages = [
|
| 30 |
{"role": "system", "content": "You are an expert code reviewer. Output only valid JSON."},
|
|
|
|
| 18 |
FastLanguageModel.for_inference(model)
|
| 19 |
|
| 20 |
prompt = """You are an expert code reviewer. Review the following code and output a JSON action indicating any bugs or issues you find.
|
| 21 |
+
|
| 22 |
Code:
|
|
|
|
| 23 |
def process(data):
|
| 24 |
for i in data:
|
| 25 |
if i == "remove": data.remove(i)
|
| 26 |
return data
|
| 27 |
+
"""
|
| 28 |
|
| 29 |
messages = [
|
| 30 |
{"role": "system", "content": "You are an expert code reviewer. Output only valid JSON."},
|