ancerlop commited on
Commit
6a93d74
1 Parent(s): 97418ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -41,14 +41,14 @@ def process_input(text, rag, prompt_template):
41
  text = generate(prompt)
42
 
43
  # Convertimos el generador en una cadena JSON
44
- #json_str = ''.join(json_text)
45
 
46
  # Convertimos la cadena JSON en un objeto JSON
47
- #json_obj = json.loads(json_str)
48
 
49
  # Generamos el archivo JSON
50
- #with open('output.json', 'w') as f:
51
- # json.dump(json_obj, f)
52
 
53
  return text
54
 
 
41
  text = generate(prompt)
42
 
43
  # Convertimos el generador en una cadena JSON
44
+ json_str = ''.join(json_text)
45
 
46
  # Convertimos la cadena JSON en un objeto JSON
47
+ json_obj = json.loads(json_str)
48
 
49
  # Generamos el archivo JSON
50
+ with open('output.json', 'w') as f:
51
+ json.dump(json_obj, f)
52
 
53
  return text
54