CosmoAI commited on
Commit
1c96088
·
verified ·
1 Parent(s): 9f1e952

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -40,7 +40,12 @@ def make_call(data):
40
  break
41
  if answer:
42
  break
43
- return json.dumps(answer)
 
 
 
 
 
44
 
45
 
46
 
 
40
  break
41
  if answer:
42
  break
43
+ respo = {
44
+ "message": answer,
45
+ "action": "nothing",
46
+ "function": "nothing",
47
+ }
48
+ return json.dumps(respo)
49
 
50
 
51