CosmoAI commited on
Commit
c69c6b2
·
verified ·
1 Parent(s): 49374f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -57,13 +57,13 @@ def responsenew(data):
57
  items = json.loads(newdata)
58
  query = items['text']
59
  query = query.lower()
60
- try:
61
- items = json.loads(newdata)
62
- query = items['text']
63
- query = query.lower()
64
- print(query)
65
- except json.JSONDecodeError as e:
66
- print("Invalid JSON:", e)
67
  response = model.generate_content(query)
68
  print(f"\n{to_markdown(response.text)}")
69
  if text is not None:
 
57
  items = json.loads(newdata)
58
  query = items['text']
59
  query = query.lower()
60
+ # try:
61
+ # items = json.loads(newdata)
62
+ # query = items['text']
63
+ # query = query.lower()
64
+ # print(query)
65
+ # except json.JSONDecodeError as e:
66
+ # print("Invalid JSON:", e)
67
  response = model.generate_content(query)
68
  print(f"\n{to_markdown(response.text)}")
69
  if text is not None: