-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
executable file
·162 lines (128 loc) · 4.98 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# -*- coding: utf-8 -*-
# Copyright 2018 IBM Corp. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 (the “License”)
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an “AS IS” BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
import os
from dotenv import load_dotenv
from flask import Flask, Response
from flask import jsonify
from flask import request, redirect
from flask_socketio import SocketIO
from flask_cors import CORS
from ibm_watson import AssistantV1
from ibm_watson import SpeechToTextV1
from ibm_watson import TextToSpeechV1
from ibm_cloud_sdk_core import get_authenticator_from_environment
# Import the required module for text
# to speech conversion
from gtts import gTTS
# This module is imported so that we can
# play the converted audio
import os
language = 'en'
import assistant_setup
app = Flask(__name__)
socketio = SocketIO(app)
CORS(app)
# Redirect http to https on CloudFoundry
@app.before_request
def before_request():
fwd = request.headers.get('x-forwarded-proto')
# Not on Cloud Foundry
if fwd is None:
return None
# On Cloud Foundry and is https
elif fwd == "https":
return None
# On Cloud Foundry and is http, then redirect
elif fwd == "http":
url = request.url.replace('http://', 'https://', 1)
code = 301
return redirect(url, code=code)
@app.route('/')
def Welcome():
return app.send_static_file('index.html')
@app.route('/api/conversation', methods=['POST', 'GET'])
def getConvResponse():
convText = request.form.get('convText')
#print(convText)
convContext = request.form.get('context', "{}")
jsonContext = json.loads(convContext)
#print(jsonContext)
response = assistant.message(workspace_id=workspace_id,
input={'text': convText},
context=jsonContext)
response = response.get_result()
reponseText = response["output"]["text"]
responseDetails = {'responseText': '... '.join(reponseText),
'context': response["context"]}
return jsonify(results=responseDetails)
@app.route('/api/text-to-speech', methods=['POST'])
def getSpeechFromText():
inputText = request.form.get('text')
# Passing the text and language to the engine,
# here we have marked slow=False. Which tells
# the module that the converted audio should
# have a high speed
myobj = gTTS(text=inputText, lang=language, slow=False)
# Saving the converted audio in a mp3 file named
# welcome
myobj.save("output.wav")
#ttsService = TextToSpeechV1()
def generate():
with open("output.wav", "rb") as fwav:
data = fwav.read(1024)
while data:
yield data
data = fwav.read(1024)
return Response(generate(), mimetype="audio/x-wav")
'''def generate():
if inputText:
audioOut = ttsService.synthesize(
inputText,
accept='audio/wav',
voice='en-US_AllisonVoice').get_result()
print(audioOut)
data = audioOut.content
print(data)
else:
print("Empty response")
data = "I have no response to that."
yield data
return Response(response=generate(), mimetype="audio/x-wav")'''
@app.route('/api/speech-to-text', methods=['POST'])
def getTextFromSpeech():
sttService = SpeechToTextV1()
response = sttService.recognize(
audio=request.get_data(cache=False),
content_type='audio/wav',
timestamps=True,
word_confidence=True,
smart_formatting=True).get_result()
# Ask user to repeat if STT can't transcribe the speech
if len(response['results']) < 1:
return Response(mimetype='plain/text',
response="Sorry, didn't get that. please try again!")
text_output = response['results'][0]['alternatives'][0]['transcript']
text_output = text_output.strip()
#print(text_output)
return Response(response=text_output, mimetype='plain/text')
port = os.environ.get("PORT") or os.environ.get("VCAP_APP_PORT") or 5000
if __name__ == "__main__":
load_dotenv()
# SDK is currently confused. Only sees 'conversation' for CloudFoundry.
authenticator = (get_authenticator_from_environment('assistant') or
get_authenticator_from_environment('conversation'))
assistant = AssistantV1(version="2019-11-06", authenticator=authenticator)
workspace_id = assistant_setup.init_skill(assistant)
socketio.run(app, host='127.0.0.1', port=1880,debug =True)#http://127.0.0.1:1880