ldhldh commited on
Commit
9ddf3dd
Β·
1 Parent(s): 5cf95a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -13
app.py CHANGED
@@ -59,20 +59,12 @@ def chat():
59
  print("응닡 μ‹œκ°„ : " + result_list[0] +"\nresult:"+ result)
60
 
61
  headers = {'Content-Type': 'application/json'}
62
- data = {
63
- "version": "2.0",
64
- "template": {
65
- "outputs": [
66
- {
67
- "simpleText": {
68
- "text": result
69
- }
70
- }
71
- ]
72
- }
73
- }
74
  if arr[3] != "Asia/Seoul":
75
- response_collback = requests.post(arr[3], headers=headers, data=json.dumps(data))
76
  print(response_collback)
77
 
78
  th_a = Thread(target = chat)
 
59
  print("응닡 μ‹œκ°„ : " + result_list[0] +"\nresult:"+ result)
60
 
61
  headers = {'Content-Type': 'application/json'}
62
+ body = {
63
+ "url" : arr[3],
64
+ "data" : result
65
+ }
 
 
 
 
 
 
 
 
66
  if arr[3] != "Asia/Seoul":
67
+ response_collback = requests.post("https://9174963504.for-seoul.synctreengine.com/call", headers=headers, data=json.dumps(body))
68
  print(response_collback)
69
 
70
  th_a = Thread(target = chat)