ArshVerma commited on
Commit
be2f706
·
1 Parent(s): 7216e1b

Fix nested markdown blocks for Kaggle parser

Browse files
Files changed (1) hide show
  1. 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
- ```\n"""
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."},