Update app.py
Browse files
app.py
CHANGED
@@ -31,11 +31,9 @@ def main():
|
|
31 |
a2t = A2T(mic["bytes"])
|
32 |
text = a2t.predict()
|
33 |
response = llmchain(entity=text, id=0)
|
34 |
-
print(response)
|
35 |
t2a = T2A(response)
|
36 |
-
print(t2a)
|
37 |
autoplay(t2a)
|
38 |
-
print(sys.getsizeof(a2t), " ", sys.getsizeof(text), " ", sys.getsizeof(t2a), " ", sys.getsizeof(llmchain))
|
39 |
del response
|
40 |
|
41 |
|
|
|
31 |
a2t = A2T(mic["bytes"])
|
32 |
text = a2t.predict()
|
33 |
response = llmchain(entity=text, id=0)
|
34 |
+
print(sys.getsizeof(a2t), " ", sys.getsizeof(text), " ", sys.getsizeof(response), " ", sys.getsizeof(llmchain))
|
35 |
t2a = T2A(response)
|
|
|
36 |
autoplay(t2a)
|
|
|
37 |
del response
|
38 |
|
39 |
|