UMESH266
commited on
Commit
•
4135c2c
1
Parent(s):
d359a51
App updated
Browse files- app.py +28 -32
- artifacts/Audio.mp3 +0 -0
- artifacts/response.txt +11 -1
- logs/10_30_2024_10_55_55.log +340 -0
- logs/10_30_2024_13_20_32.log +0 -0
- src/components/__pycache__/avatarsys.cpython-311.pyc +0 -0
- src/components/__pycache__/docchat.cpython-311.pyc +0 -0
- src/components/__pycache__/emotionanalyz.cpython-311.pyc +0 -0
- src/components/__pycache__/textprocess.cpython-311.pyc +0 -0
- src/components/__pycache__/voicesynth.cpython-311.pyc +0 -0
- src/utils/__pycache__/accessory.cpython-311.pyc +0 -0
app.py
CHANGED
@@ -6,6 +6,7 @@ from src.components.avatarsys import AvatarSystem
|
|
6 |
from src.exception.exception import customexception
|
7 |
from src.utils.accessory import play_speech, listen, save_output, load_output
|
8 |
import speech_recognition as sr
|
|
|
9 |
|
10 |
# Global
|
11 |
salutation = "Pleasure meeting you. Have a nice day!"
|
@@ -59,13 +60,12 @@ def record_voice():
|
|
59 |
return user_input
|
60 |
|
61 |
except sr.RequestError as e:
|
62 |
-
|
63 |
|
64 |
except sr.UnknownValueError:
|
65 |
-
|
66 |
|
67 |
|
68 |
-
|
69 |
if mode == "Text" and st.session_state.HF_TOKEN == '':
|
70 |
if 'chathist' not in st.session_state:
|
71 |
st.session_state.chathist = dict()
|
@@ -82,24 +82,20 @@ if mode == "Text" and st.session_state.HF_TOKEN == '':
|
|
82 |
# Exiting the chat
|
83 |
if 'exit' in user_input:
|
84 |
st.write(salutation)
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
# user.write(key)
|
100 |
-
# bot_col1, bot_col2, bot_col3 = st.columns([4, 1, 1], vertical_alignment='center')
|
101 |
-
# bot = bot_col1.container(border=True)
|
102 |
-
# bot.write(st.session_state.chathist[key][0])
|
103 |
|
104 |
elif mode == "Voice" and st.session_state.HF_TOKEN == '':
|
105 |
if 'chathist' not in st.session_state:
|
@@ -113,17 +109,16 @@ elif mode == "Voice" and st.session_state.HF_TOKEN == '':
|
|
113 |
# Exiting the chat
|
114 |
if 'exit' in user_input:
|
115 |
st.write(salutation)
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
st.session_state.chathist = chat_history(user_input, ans, senti)
|
127 |
|
128 |
# Chat history display
|
129 |
if st.button("View Chat history"):
|
@@ -136,6 +131,7 @@ if st.button("View Chat history"):
|
|
136 |
bot_col1, bot_col2, bot_col3 = st.columns([4, 1, 1], vertical_alignment='center')
|
137 |
bot = bot_col1.container(border=True)
|
138 |
bot.write(st.session_state.chathist[key][0])
|
|
|
139 |
|
140 |
# if mode == "Doc-Bot" and st.session_state.HF_TOKEN != '':
|
141 |
# st.write("Doc-Bot implementation")
|
|
|
6 |
from src.exception.exception import customexception
|
7 |
from src.utils.accessory import play_speech, listen, save_output, load_output
|
8 |
import speech_recognition as sr
|
9 |
+
import sys
|
10 |
|
11 |
# Global
|
12 |
salutation = "Pleasure meeting you. Have a nice day!"
|
|
|
60 |
return user_input
|
61 |
|
62 |
except sr.RequestError as e:
|
63 |
+
raise customexception("Could not request results: {0}".format(e), sys)
|
64 |
|
65 |
except sr.UnknownValueError:
|
66 |
+
raise customexception("Unknown error occurred.", sys)
|
67 |
|
68 |
|
|
|
69 |
if mode == "Text" and st.session_state.HF_TOKEN == '':
|
70 |
if 'chathist' not in st.session_state:
|
71 |
st.session_state.chathist = dict()
|
|
|
82 |
# Exiting the chat
|
83 |
if 'exit' in user_input:
|
84 |
st.write(salutation)
|
85 |
+
else:
|
86 |
+
# Getting response and sentiment of response
|
87 |
+
ans, senti = response(user_input)
|
88 |
+
|
89 |
+
# Chat history
|
90 |
+
st.session_state.chathist = chat_history(user_input, ans, senti)
|
91 |
+
|
92 |
+
with st.container(border=True):
|
93 |
+
user_col1, user_col2, user_col3 = st.columns([1, 1, 3], vertical_alignment="center")
|
94 |
+
user = user_col3.container(border=True)
|
95 |
+
user.write(f"You: {user_input}")
|
96 |
+
bot_col1, bot_col2, bot_col3 = st.columns([3, 1, 1], vertical_alignment='center')
|
97 |
+
bot = bot_col1.container(border=True)
|
98 |
+
bot.write(f"Bot: {ans}")
|
|
|
|
|
|
|
|
|
99 |
|
100 |
elif mode == "Voice" and st.session_state.HF_TOKEN == '':
|
101 |
if 'chathist' not in st.session_state:
|
|
|
109 |
# Exiting the chat
|
110 |
if 'exit' in user_input:
|
111 |
st.write(salutation)
|
112 |
+
else:
|
113 |
+
# Getting response and sentiment of response
|
114 |
+
ans, senti = response(user_input)
|
115 |
+
|
116 |
+
st.write(f"You: {user_input}")
|
117 |
+
st.write(f"Bot: {ans}")
|
118 |
+
play_speech(ans)
|
119 |
+
|
120 |
+
# Chat history
|
121 |
+
st.session_state.chathist = chat_history(user_input, ans, senti)
|
|
|
122 |
|
123 |
# Chat history display
|
124 |
if st.button("View Chat history"):
|
|
|
131 |
bot_col1, bot_col2, bot_col3 = st.columns([4, 1, 1], vertical_alignment='center')
|
132 |
bot = bot_col1.container(border=True)
|
133 |
bot.write(st.session_state.chathist[key][0])
|
134 |
+
st.stop()
|
135 |
|
136 |
# if mode == "Doc-Bot" and st.session_state.HF_TOKEN != '':
|
137 |
# st.write("Doc-Bot implementation")
|
artifacts/Audio.mp3
ADDED
File without changes
|
artifacts/response.txt
CHANGED
@@ -1,3 +1,13 @@
|
|
1 |
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
|
3 |
+
# The Best of the Best: Top 10 Most Popular and Influential People in the World
|
4 |
+
|
5 |
+
In a world that is constantly changing, it can be difficult to keep track of the people who are shaping our society and influencing our lives. From politicians and business leaders to artists and activists, there are countless individuals who have made a significant impact on the world. In this article, we will take a look at the top 10 most popular and influential people in the world today.
|
6 |
+
|
7 |
+
1. Elon Musk - CEO of SpaceX and Tesla, Musk is a visionary entrepreneur who is revolutionizing the way we travel and think about energy. His companies are working on everything from electric cars to space travel, and he has become a symbol of innovation and progress.
|
8 |
+
2. Jeff Bezos - Founder and CEO of Amazon, Bezos is one of the richest people in the world and has transformed the way we shop online. He has also invested in a number of other ventures, including the Washington Post and Blue Origin, a space exploration company.
|
9 |
+
3. Greta Thunberg - A Swedish climate activist, Thunberg has become a global icon for the fight against climate change. She has inspired millions of young people to take action and demand that their governments take serious steps to address the crisis.
|
10 |
+
4. Donald Trump - The 45th President of the United States, Trump is one of the most polarizing figures in the world. Love him or hate him, there is no denying that he has had a significant impact on American politics and the world at large.
|
11 |
+
5. Beyonc� - A singer, actress, and entrepreneur, Beyonc� is one of the most successful and influential artists in the world. She has broken records and pushed boundaries with her music and performances, and she is a role model for millions of young women.
|
12 |
+
6. Mark Zuckerberg - Co-founder and CEO of Facebook, Zuckerberg is one of the most powerful figures in the tech industry. He has faced criticism for the company's handling of user data and its role in spreading misinformation, but he remains a key player in the world of social media.
|
13 |
+
7. Angela Merkel - Chancellor of Germany since 2005, Merkel is one of the most powerful women in politics. She has been a strong advocate for European unity and has played a key role in shaping the continent's
|
logs/10_30_2024_10_55_55.log
CHANGED
@@ -0,0 +1,340 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[2024-10-30 10:55:57,706] 28 root - INFO - LLM model for text generation created.
|
2 |
+
[2024-10-30 10:55:57,708] 30 root - INFO - LLM model for medical text generation created.
|
3 |
+
[2024-10-30 10:56:10,054] 22 root - INFO - Avatar system initiated.
|
4 |
+
[2024-10-30 10:56:12,334] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
5 |
+
[2024-10-30 10:56:37,688] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
6 |
+
[2024-10-30 10:56:37,706] 31 root - INFO - Text response generated.
|
7 |
+
[2024-10-30 10:56:48,496] 28 root - INFO - Text response generated.
|
8 |
+
[2024-10-30 10:56:52,010] 30 root - INFO - Sentiment of response generated.
|
9 |
+
[2024-10-30 10:56:52,038] 32 root - INFO - Response sentiment received.
|
10 |
+
[2024-10-30 10:57:27,836] 19 root - INFO - Response text convertion to audio done.
|
11 |
+
[2024-10-30 10:57:27,836] 36 root - INFO - Generated response saved as audio mp3 format.
|
12 |
+
[2024-10-30 10:57:27,846] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
13 |
+
[2024-10-30 10:57:27,850] 73 root - INFO - Stored text loaded.
|
14 |
+
[2024-10-30 11:02:06,220] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
15 |
+
[2024-10-30 11:02:14,211] 31 root - INFO - Text response generated.
|
16 |
+
[2024-10-30 11:02:24,540] 28 root - INFO - Text response generated.
|
17 |
+
[2024-10-30 11:02:25,402] 30 root - INFO - Sentiment of response generated.
|
18 |
+
[2024-10-30 11:02:25,404] 32 root - INFO - Response sentiment received.
|
19 |
+
[2024-10-30 11:03:12,568] 19 root - INFO - Response text convertion to audio done.
|
20 |
+
[2024-10-30 11:03:12,569] 36 root - INFO - Generated response saved as audio mp3 format.
|
21 |
+
[2024-10-30 11:03:12,573] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
22 |
+
[2024-10-30 11:03:12,575] 73 root - INFO - Stored text loaded.
|
23 |
+
[2024-10-30 11:16:12,970] 28 root - INFO - LLM model for text generation created.
|
24 |
+
[2024-10-30 11:16:12,973] 30 root - INFO - LLM model for medical text generation created.
|
25 |
+
[2024-10-30 11:16:16,245] 22 root - INFO - Avatar system initiated.
|
26 |
+
[2024-10-30 11:16:16,578] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
27 |
+
[2024-10-30 11:16:22,225] 31 root - INFO - Text response generated.
|
28 |
+
[2024-10-30 11:16:33,847] 28 root - INFO - Text response generated.
|
29 |
+
[2024-10-30 11:16:34,601] 30 root - INFO - Sentiment of response generated.
|
30 |
+
[2024-10-30 11:16:34,601] 32 root - INFO - Response sentiment received.
|
31 |
+
[2024-10-30 11:17:04,835] 19 root - INFO - Response text convertion to audio done.
|
32 |
+
[2024-10-30 11:17:04,835] 36 root - INFO - Generated response saved as audio mp3 format.
|
33 |
+
[2024-10-30 11:17:04,836] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
34 |
+
[2024-10-30 11:17:04,837] 73 root - INFO - Stored text loaded.
|
35 |
+
[2024-10-30 11:17:12,679] 19 root - INFO - Response text convertion to audio done.
|
36 |
+
[2024-10-30 11:17:13,090] 23 root - INFO - Generated audio file loaded
|
37 |
+
[2024-10-30 11:17:16,183] 32 root - INFO - Created audio file removed for entry of new file.
|
38 |
+
[2024-10-30 11:17:54,656] 28 root - INFO - LLM model for text generation created.
|
39 |
+
[2024-10-30 11:17:54,656] 30 root - INFO - LLM model for medical text generation created.
|
40 |
+
[2024-10-30 11:18:02,618] 22 root - INFO - Avatar system initiated.
|
41 |
+
[2024-10-30 11:18:04,639] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
42 |
+
[2024-10-30 11:18:26,990] 31 root - INFO - Text response generated.
|
43 |
+
[2024-10-30 11:18:42,652] 28 root - INFO - Text response generated.
|
44 |
+
[2024-10-30 11:18:43,153] 30 root - INFO - Sentiment of response generated.
|
45 |
+
[2024-10-30 11:18:43,154] 32 root - INFO - Response sentiment received.
|
46 |
+
[2024-10-30 11:19:43,903] 19 root - INFO - Response text convertion to audio done.
|
47 |
+
[2024-10-30 11:19:43,903] 36 root - INFO - Generated response saved as audio mp3 format.
|
48 |
+
[2024-10-30 11:19:43,904] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
49 |
+
[2024-10-30 11:19:43,904] 73 root - INFO - Stored text loaded.
|
50 |
+
[2024-10-30 11:20:45,634] 28 root - INFO - LLM model for text generation created.
|
51 |
+
[2024-10-30 11:20:45,636] 30 root - INFO - LLM model for medical text generation created.
|
52 |
+
[2024-10-30 11:20:48,794] 22 root - INFO - Avatar system initiated.
|
53 |
+
[2024-10-30 11:20:49,288] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
54 |
+
[2024-10-30 11:20:53,717] 31 root - INFO - Text response generated.
|
55 |
+
[2024-10-30 11:20:55,383] 28 root - INFO - Text response generated.
|
56 |
+
[2024-10-30 11:20:56,124] 30 root - INFO - Sentiment of response generated.
|
57 |
+
[2024-10-30 11:20:56,125] 32 root - INFO - Response sentiment received.
|
58 |
+
[2024-10-30 11:21:38,951] 19 root - INFO - Response text convertion to audio done.
|
59 |
+
[2024-10-30 11:21:38,951] 36 root - INFO - Generated response saved as audio mp3 format.
|
60 |
+
[2024-10-30 11:21:38,953] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
61 |
+
[2024-10-30 11:21:38,953] 73 root - INFO - Stored text loaded.
|
62 |
+
[2024-10-30 11:39:08,174] 28 root - INFO - LLM model for text generation created.
|
63 |
+
[2024-10-30 11:39:08,177] 30 root - INFO - LLM model for medical text generation created.
|
64 |
+
[2024-10-30 11:39:11,072] 22 root - INFO - Avatar system initiated.
|
65 |
+
[2024-10-30 11:39:11,436] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
66 |
+
[2024-10-30 11:39:16,354] 31 root - INFO - Text response generated.
|
67 |
+
[2024-10-30 11:39:17,562] 28 root - INFO - Text response generated.
|
68 |
+
[2024-10-30 11:39:19,484] 30 root - INFO - Sentiment of response generated.
|
69 |
+
[2024-10-30 11:39:19,497] 32 root - INFO - Response sentiment received.
|
70 |
+
[2024-10-30 11:40:02,762] 19 root - INFO - Response text convertion to audio done.
|
71 |
+
[2024-10-30 11:40:02,762] 36 root - INFO - Generated response saved as audio mp3 format.
|
72 |
+
[2024-10-30 11:40:02,774] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
73 |
+
[2024-10-30 11:40:02,776] 73 root - INFO - Stored text loaded.
|
74 |
+
[2024-10-30 11:41:22,460] 19 root - INFO - Response text convertion to audio done.
|
75 |
+
[2024-10-30 11:41:22,519] 23 root - INFO - Generated audio file loaded
|
76 |
+
[2024-10-30 11:41:25,617] 32 root - INFO - Created audio file removed for entry of new file.
|
77 |
+
[2024-10-30 11:42:46,036] 28 root - INFO - LLM model for text generation created.
|
78 |
+
[2024-10-30 11:42:46,037] 30 root - INFO - LLM model for medical text generation created.
|
79 |
+
[2024-10-30 11:42:48,913] 22 root - INFO - Avatar system initiated.
|
80 |
+
[2024-10-30 11:42:49,163] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
81 |
+
[2024-10-30 11:42:56,260] 31 root - INFO - Text response generated.
|
82 |
+
[2024-10-30 11:43:04,719] 28 root - INFO - Text response generated.
|
83 |
+
[2024-10-30 11:43:05,800] 30 root - INFO - Sentiment of response generated.
|
84 |
+
[2024-10-30 11:43:05,800] 32 root - INFO - Response sentiment received.
|
85 |
+
[2024-10-30 11:43:43,335] 19 root - INFO - Response text convertion to audio done.
|
86 |
+
[2024-10-30 11:43:43,336] 36 root - INFO - Generated response saved as audio mp3 format.
|
87 |
+
[2024-10-30 11:43:43,340] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
88 |
+
[2024-10-30 11:43:43,342] 73 root - INFO - Stored text loaded.
|
89 |
+
[2024-10-30 11:55:09,152] 28 root - INFO - LLM model for text generation created.
|
90 |
+
[2024-10-30 11:55:09,153] 30 root - INFO - LLM model for medical text generation created.
|
91 |
+
[2024-10-30 11:55:11,721] 22 root - INFO - Avatar system initiated.
|
92 |
+
[2024-10-30 11:55:12,082] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
93 |
+
[2024-10-30 11:55:41,784] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
94 |
+
[2024-10-30 11:56:03,304] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
95 |
+
[2024-10-30 11:56:06,870] 31 root - INFO - Text response generated.
|
96 |
+
[2024-10-30 11:56:13,767] 28 root - INFO - Text response generated.
|
97 |
+
[2024-10-30 11:56:14,188] 30 root - INFO - Sentiment of response generated.
|
98 |
+
[2024-10-30 11:56:14,189] 32 root - INFO - Response sentiment received.
|
99 |
+
[2024-10-30 11:56:32,585] 19 root - INFO - Response text convertion to audio done.
|
100 |
+
[2024-10-30 11:56:32,586] 36 root - INFO - Generated response saved as audio mp3 format.
|
101 |
+
[2024-10-30 11:56:32,588] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
102 |
+
[2024-10-30 11:56:32,590] 73 root - INFO - Stored text loaded.
|
103 |
+
[2024-10-30 11:58:48,113] 28 root - INFO - LLM model for text generation created.
|
104 |
+
[2024-10-30 11:58:48,115] 30 root - INFO - LLM model for medical text generation created.
|
105 |
+
[2024-10-30 11:58:50,548] 22 root - INFO - Avatar system initiated.
|
106 |
+
[2024-10-30 11:58:50,800] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
107 |
+
[2024-10-30 11:59:40,452] 28 root - INFO - LLM model for text generation created.
|
108 |
+
[2024-10-30 11:59:40,452] 30 root - INFO - LLM model for medical text generation created.
|
109 |
+
[2024-10-30 11:59:42,518] 22 root - INFO - Avatar system initiated.
|
110 |
+
[2024-10-30 11:59:42,799] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
111 |
+
[2024-10-30 12:00:31,122] 28 root - INFO - LLM model for text generation created.
|
112 |
+
[2024-10-30 12:00:31,123] 30 root - INFO - LLM model for medical text generation created.
|
113 |
+
[2024-10-30 12:00:33,193] 22 root - INFO - Avatar system initiated.
|
114 |
+
[2024-10-30 12:00:33,440] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
115 |
+
[2024-10-30 12:00:38,689] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
116 |
+
[2024-10-30 12:00:59,888] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
117 |
+
[2024-10-30 12:01:06,644] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
118 |
+
[2024-10-30 12:01:21,698] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
119 |
+
[2024-10-30 12:02:05,910] 28 root - INFO - LLM model for text generation created.
|
120 |
+
[2024-10-30 12:02:05,938] 30 root - INFO - LLM model for medical text generation created.
|
121 |
+
[2024-10-30 12:02:08,974] 22 root - INFO - Avatar system initiated.
|
122 |
+
[2024-10-30 12:02:09,318] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
123 |
+
[2024-10-30 12:02:13,125] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
124 |
+
[2024-10-30 12:02:27,849] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
125 |
+
[2024-10-30 12:02:43,797] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
126 |
+
[2024-10-30 12:02:53,457] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
127 |
+
[2024-10-30 12:04:40,204] 28 root - INFO - LLM model for text generation created.
|
128 |
+
[2024-10-30 12:04:40,204] 30 root - INFO - LLM model for medical text generation created.
|
129 |
+
[2024-10-30 12:04:42,317] 22 root - INFO - Avatar system initiated.
|
130 |
+
[2024-10-30 12:04:42,572] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
131 |
+
[2024-10-30 12:04:55,156] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
132 |
+
[2024-10-30 12:05:05,502] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
133 |
+
[2024-10-30 12:05:40,263] 28 root - INFO - LLM model for text generation created.
|
134 |
+
[2024-10-30 12:05:40,263] 30 root - INFO - LLM model for medical text generation created.
|
135 |
+
[2024-10-30 12:05:42,767] 22 root - INFO - Avatar system initiated.
|
136 |
+
[2024-10-30 12:05:43,048] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
137 |
+
[2024-10-30 12:05:45,587] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
138 |
+
[2024-10-30 12:05:55,419] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
139 |
+
[2024-10-30 12:06:43,668] 28 root - INFO - LLM model for text generation created.
|
140 |
+
[2024-10-30 12:06:43,669] 30 root - INFO - LLM model for medical text generation created.
|
141 |
+
[2024-10-30 12:06:46,535] 22 root - INFO - Avatar system initiated.
|
142 |
+
[2024-10-30 12:06:46,827] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
143 |
+
[2024-10-30 12:06:50,639] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
144 |
+
[2024-10-30 12:07:53,675] 28 root - INFO - LLM model for text generation created.
|
145 |
+
[2024-10-30 12:07:53,676] 30 root - INFO - LLM model for medical text generation created.
|
146 |
+
[2024-10-30 12:07:56,294] 22 root - INFO - Avatar system initiated.
|
147 |
+
[2024-10-30 12:07:56,550] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
148 |
+
[2024-10-30 12:08:00,748] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
149 |
+
[2024-10-30 12:08:14,673] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
150 |
+
[2024-10-30 12:08:19,335] 31 root - INFO - Text response generated.
|
151 |
+
[2024-10-30 12:08:32,186] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
152 |
+
[2024-10-30 12:08:32,341] 28 root - INFO - Text response generated.
|
153 |
+
[2024-10-30 12:08:33,635] 30 root - INFO - Sentiment of response generated.
|
154 |
+
[2024-10-30 12:08:33,638] 32 root - INFO - Response sentiment received.
|
155 |
+
[2024-10-30 12:08:56,442] 19 root - INFO - Response text convertion to audio done.
|
156 |
+
[2024-10-30 12:08:56,443] 36 root - INFO - Generated response saved as audio mp3 format.
|
157 |
+
[2024-10-30 12:08:56,447] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
158 |
+
[2024-10-30 12:08:56,450] 73 root - INFO - Stored text loaded.
|
159 |
+
[2024-10-30 12:10:55,927] 28 root - INFO - LLM model for text generation created.
|
160 |
+
[2024-10-30 12:10:55,928] 30 root - INFO - LLM model for medical text generation created.
|
161 |
+
[2024-10-30 12:10:59,184] 22 root - INFO - Avatar system initiated.
|
162 |
+
[2024-10-30 12:10:59,441] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
163 |
+
[2024-10-30 12:11:01,397] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
164 |
+
[2024-10-30 12:11:18,179] 31 root - INFO - Text response generated.
|
165 |
+
[2024-10-30 12:11:19,350] 28 root - INFO - Text response generated.
|
166 |
+
[2024-10-30 12:11:19,869] 30 root - INFO - Sentiment of response generated.
|
167 |
+
[2024-10-30 12:11:19,872] 32 root - INFO - Response sentiment received.
|
168 |
+
[2024-10-30 12:11:40,692] 19 root - INFO - Response text convertion to audio done.
|
169 |
+
[2024-10-30 12:11:40,693] 36 root - INFO - Generated response saved as audio mp3 format.
|
170 |
+
[2024-10-30 12:11:40,696] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
171 |
+
[2024-10-30 12:11:40,698] 73 root - INFO - Stored text loaded.
|
172 |
+
[2024-10-30 12:13:28,958] 28 root - INFO - LLM model for text generation created.
|
173 |
+
[2024-10-30 12:13:28,958] 30 root - INFO - LLM model for medical text generation created.
|
174 |
+
[2024-10-30 12:13:31,576] 22 root - INFO - Avatar system initiated.
|
175 |
+
[2024-10-30 12:13:32,218] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
176 |
+
[2024-10-30 12:13:36,007] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
177 |
+
[2024-10-30 12:13:39,502] 31 root - INFO - Text response generated.
|
178 |
+
[2024-10-30 12:13:44,015] 28 root - INFO - Text response generated.
|
179 |
+
[2024-10-30 12:13:44,326] 30 root - INFO - Sentiment of response generated.
|
180 |
+
[2024-10-30 12:13:44,327] 32 root - INFO - Response sentiment received.
|
181 |
+
[2024-10-30 12:13:55,328] 19 root - INFO - Response text convertion to audio done.
|
182 |
+
[2024-10-30 12:13:55,328] 36 root - INFO - Generated response saved as audio mp3 format.
|
183 |
+
[2024-10-30 12:13:55,332] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
184 |
+
[2024-10-30 12:13:55,334] 73 root - INFO - Stored text loaded.
|
185 |
+
[2024-10-30 12:14:42,944] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
186 |
+
[2024-10-30 12:14:46,312] 31 root - INFO - Text response generated.
|
187 |
+
[2024-10-30 12:14:49,717] 28 root - INFO - Text response generated.
|
188 |
+
[2024-10-30 12:14:50,000] 30 root - INFO - Sentiment of response generated.
|
189 |
+
[2024-10-30 12:14:50,000] 32 root - INFO - Response sentiment received.
|
190 |
+
[2024-10-30 12:15:04,346] 19 root - INFO - Response text convertion to audio done.
|
191 |
+
[2024-10-30 12:15:04,346] 36 root - INFO - Generated response saved as audio mp3 format.
|
192 |
+
[2024-10-30 12:15:04,350] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
193 |
+
[2024-10-30 12:15:04,351] 73 root - INFO - Stored text loaded.
|
194 |
+
[2024-10-30 12:18:01,447] 28 root - INFO - LLM model for text generation created.
|
195 |
+
[2024-10-30 12:18:01,449] 30 root - INFO - LLM model for medical text generation created.
|
196 |
+
[2024-10-30 12:18:03,531] 22 root - INFO - Avatar system initiated.
|
197 |
+
[2024-10-30 12:18:03,786] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
198 |
+
[2024-10-30 12:22:27,755] 28 root - INFO - LLM model for text generation created.
|
199 |
+
[2024-10-30 12:22:27,755] 30 root - INFO - LLM model for medical text generation created.
|
200 |
+
[2024-10-30 12:22:30,232] 22 root - INFO - Avatar system initiated.
|
201 |
+
[2024-10-30 12:22:30,495] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
202 |
+
[2024-10-30 12:22:40,678] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
203 |
+
[2024-10-30 12:22:47,120] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
204 |
+
[2024-10-30 12:22:50,596] 31 root - INFO - Text response generated.
|
205 |
+
[2024-10-30 12:23:01,322] 28 root - INFO - Text response generated.
|
206 |
+
[2024-10-30 12:23:01,756] 30 root - INFO - Sentiment of response generated.
|
207 |
+
[2024-10-30 12:23:01,759] 32 root - INFO - Response sentiment received.
|
208 |
+
[2024-10-30 12:23:28,721] 19 root - INFO - Response text convertion to audio done.
|
209 |
+
[2024-10-30 12:23:28,722] 36 root - INFO - Generated response saved as audio mp3 format.
|
210 |
+
[2024-10-30 12:23:28,725] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
211 |
+
[2024-10-30 12:23:28,728] 73 root - INFO - Stored text loaded.
|
212 |
+
[2024-10-30 12:25:57,290] 28 root - INFO - LLM model for text generation created.
|
213 |
+
[2024-10-30 12:25:57,291] 30 root - INFO - LLM model for medical text generation created.
|
214 |
+
[2024-10-30 12:26:00,841] 22 root - INFO - Avatar system initiated.
|
215 |
+
[2024-10-30 12:26:01,144] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
216 |
+
[2024-10-30 12:26:09,887] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
217 |
+
[2024-10-30 12:26:14,290] 31 root - INFO - Text response generated.
|
218 |
+
[2024-10-30 12:26:22,214] 28 root - INFO - Text response generated.
|
219 |
+
[2024-10-30 12:26:22,890] 30 root - INFO - Sentiment of response generated.
|
220 |
+
[2024-10-30 12:26:22,894] 32 root - INFO - Response sentiment received.
|
221 |
+
[2024-10-30 12:26:57,185] 19 root - INFO - Response text convertion to audio done.
|
222 |
+
[2024-10-30 12:26:57,186] 36 root - INFO - Generated response saved as audio mp3 format.
|
223 |
+
[2024-10-30 12:26:57,192] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
224 |
+
[2024-10-30 12:26:57,194] 73 root - INFO - Stored text loaded.
|
225 |
+
[2024-10-30 12:28:21,402] 28 root - INFO - LLM model for text generation created.
|
226 |
+
[2024-10-30 12:28:21,403] 30 root - INFO - LLM model for medical text generation created.
|
227 |
+
[2024-10-30 12:28:24,112] 22 root - INFO - Avatar system initiated.
|
228 |
+
[2024-10-30 12:28:24,456] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
229 |
+
[2024-10-30 12:28:30,166] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
230 |
+
[2024-10-30 12:28:35,034] 31 root - INFO - Text response generated.
|
231 |
+
[2024-10-30 12:28:36,532] 28 root - INFO - Text response generated.
|
232 |
+
[2024-10-30 12:28:37,549] 30 root - INFO - Sentiment of response generated.
|
233 |
+
[2024-10-30 12:28:37,555] 32 root - INFO - Response sentiment received.
|
234 |
+
[2024-10-30 12:29:12,239] 19 root - INFO - Response text convertion to audio done.
|
235 |
+
[2024-10-30 12:29:12,239] 36 root - INFO - Generated response saved as audio mp3 format.
|
236 |
+
[2024-10-30 12:29:12,281] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
237 |
+
[2024-10-30 12:29:12,282] 73 root - INFO - Stored text loaded.
|
238 |
+
[2024-10-30 12:29:39,731] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
239 |
+
[2024-10-30 12:29:43,209] 31 root - INFO - Text response generated.
|
240 |
+
[2024-10-30 12:29:54,854] 28 root - INFO - Text response generated.
|
241 |
+
[2024-10-30 12:29:55,346] 30 root - INFO - Sentiment of response generated.
|
242 |
+
[2024-10-30 12:29:55,347] 32 root - INFO - Response sentiment received.
|
243 |
+
[2024-10-30 12:30:46,278] 19 root - INFO - Response text convertion to audio done.
|
244 |
+
[2024-10-30 12:30:46,278] 36 root - INFO - Generated response saved as audio mp3 format.
|
245 |
+
[2024-10-30 12:30:46,280] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
246 |
+
[2024-10-30 12:30:46,281] 73 root - INFO - Stored text loaded.
|
247 |
+
[2024-10-30 12:30:58,235] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
248 |
+
[2024-10-30 12:31:24,575] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
249 |
+
[2024-10-30 12:31:30,044] 31 root - INFO - Text response generated.
|
250 |
+
[2024-10-30 12:31:35,713] 28 root - INFO - Text response generated.
|
251 |
+
[2024-10-30 12:31:35,989] 30 root - INFO - Sentiment of response generated.
|
252 |
+
[2024-10-30 12:31:35,990] 32 root - INFO - Response sentiment received.
|
253 |
+
[2024-10-30 12:31:53,318] 19 root - INFO - Response text convertion to audio done.
|
254 |
+
[2024-10-30 12:31:53,318] 36 root - INFO - Generated response saved as audio mp3 format.
|
255 |
+
[2024-10-30 12:31:53,319] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
256 |
+
[2024-10-30 12:31:53,319] 73 root - INFO - Stored text loaded.
|
257 |
+
[2024-10-30 12:32:25,368] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
258 |
+
[2024-10-30 12:32:33,006] 31 root - INFO - Text response generated.
|
259 |
+
[2024-10-30 12:32:46,765] 28 root - INFO - Text response generated.
|
260 |
+
[2024-10-30 12:32:47,063] 30 root - INFO - Sentiment of response generated.
|
261 |
+
[2024-10-30 12:32:47,065] 32 root - INFO - Response sentiment received.
|
262 |
+
[2024-10-30 12:33:08,238] 19 root - INFO - Response text convertion to audio done.
|
263 |
+
[2024-10-30 12:33:08,238] 36 root - INFO - Generated response saved as audio mp3 format.
|
264 |
+
[2024-10-30 12:33:08,240] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
265 |
+
[2024-10-30 12:33:08,241] 73 root - INFO - Stored text loaded.
|
266 |
+
[2024-10-30 12:35:03,157] 28 root - INFO - LLM model for text generation created.
|
267 |
+
[2024-10-30 12:35:03,158] 30 root - INFO - LLM model for medical text generation created.
|
268 |
+
[2024-10-30 12:35:05,628] 22 root - INFO - Avatar system initiated.
|
269 |
+
[2024-10-30 12:35:05,965] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
270 |
+
[2024-10-30 12:35:27,027] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
271 |
+
[2024-10-30 12:35:34,605] 31 root - INFO - Text response generated.
|
272 |
+
[2024-10-30 12:35:42,495] 28 root - INFO - Text response generated.
|
273 |
+
[2024-10-30 12:35:42,804] 30 root - INFO - Sentiment of response generated.
|
274 |
+
[2024-10-30 12:35:42,808] 32 root - INFO - Response sentiment received.
|
275 |
+
[2024-10-30 12:36:00,282] 19 root - INFO - Response text convertion to audio done.
|
276 |
+
[2024-10-30 12:36:00,282] 36 root - INFO - Generated response saved as audio mp3 format.
|
277 |
+
[2024-10-30 12:36:00,284] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
278 |
+
[2024-10-30 12:36:00,286] 73 root - INFO - Stored text loaded.
|
279 |
+
[2024-10-30 12:36:18,544] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
280 |
+
[2024-10-30 12:36:31,352] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
281 |
+
[2024-10-30 12:37:36,199] 28 root - INFO - LLM model for text generation created.
|
282 |
+
[2024-10-30 12:37:36,201] 30 root - INFO - LLM model for medical text generation created.
|
283 |
+
[2024-10-30 12:37:39,461] 22 root - INFO - Avatar system initiated.
|
284 |
+
[2024-10-30 12:37:39,706] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
285 |
+
[2024-10-30 12:37:44,558] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
286 |
+
[2024-10-30 12:37:48,409] 31 root - INFO - Text response generated.
|
287 |
+
[2024-10-30 12:38:00,827] 28 root - INFO - Text response generated.
|
288 |
+
[2024-10-30 12:38:01,339] 30 root - INFO - Sentiment of response generated.
|
289 |
+
[2024-10-30 12:38:01,340] 32 root - INFO - Response sentiment received.
|
290 |
+
[2024-10-30 12:38:33,642] 19 root - INFO - Response text convertion to audio done.
|
291 |
+
[2024-10-30 12:38:33,642] 36 root - INFO - Generated response saved as audio mp3 format.
|
292 |
+
[2024-10-30 12:38:33,647] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
293 |
+
[2024-10-30 12:38:33,649] 73 root - INFO - Stored text loaded.
|
294 |
+
[2024-10-30 12:38:44,548] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
295 |
+
[2024-10-30 12:40:49,118] 28 root - INFO - LLM model for text generation created.
|
296 |
+
[2024-10-30 12:40:49,119] 30 root - INFO - LLM model for medical text generation created.
|
297 |
+
[2024-10-30 12:40:51,034] 22 root - INFO - Avatar system initiated.
|
298 |
+
[2024-10-30 12:40:51,317] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
299 |
+
[2024-10-30 12:40:55,901] 31 root - INFO - Text response generated.
|
300 |
+
[2024-10-30 12:41:08,689] 28 root - INFO - Text response generated.
|
301 |
+
[2024-10-30 12:41:08,984] 30 root - INFO - Sentiment of response generated.
|
302 |
+
[2024-10-30 12:41:08,984] 32 root - INFO - Response sentiment received.
|
303 |
+
[2024-10-30 12:41:21,110] 19 root - INFO - Response text convertion to audio done.
|
304 |
+
[2024-10-30 12:41:21,111] 36 root - INFO - Generated response saved as audio mp3 format.
|
305 |
+
[2024-10-30 12:41:21,113] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
306 |
+
[2024-10-30 12:41:21,114] 73 root - INFO - Stored text loaded.
|
307 |
+
[2024-10-30 12:41:34,900] 19 root - INFO - Response text convertion to audio done.
|
308 |
+
[2024-10-30 12:41:34,913] 23 root - INFO - Generated audio file loaded
|
309 |
+
[2024-10-30 12:42:23,948] 32 root - INFO - Created audio file removed for entry of new file.
|
310 |
+
[2024-10-30 12:42:30,830] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
311 |
+
[2024-10-30 12:44:04,426] 28 root - INFO - LLM model for text generation created.
|
312 |
+
[2024-10-30 12:44:04,427] 30 root - INFO - LLM model for medical text generation created.
|
313 |
+
[2024-10-30 12:44:06,568] 22 root - INFO - Avatar system initiated.
|
314 |
+
[2024-10-30 12:44:06,916] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
315 |
+
[2024-10-30 12:44:26,571] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
316 |
+
[2024-10-30 12:44:26,580] 31 root - INFO - Text response generated.
|
317 |
+
[2024-10-30 12:44:29,437] 28 root - INFO - Text response generated.
|
318 |
+
[2024-10-30 12:44:29,719] 30 root - INFO - Sentiment of response generated.
|
319 |
+
[2024-10-30 12:44:29,723] 32 root - INFO - Response sentiment received.
|
320 |
+
[2024-10-30 12:44:42,911] 19 root - INFO - Response text convertion to audio done.
|
321 |
+
[2024-10-30 12:44:42,912] 36 root - INFO - Generated response saved as audio mp3 format.
|
322 |
+
[2024-10-30 12:44:42,912] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
323 |
+
[2024-10-30 12:44:42,913] 73 root - INFO - Stored text loaded.
|
324 |
+
[2024-10-30 12:44:45,681] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
325 |
+
[2024-10-30 12:45:02,679] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
326 |
+
[2024-10-30 12:45:06,793] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
327 |
+
[2024-10-30 12:45:09,373] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
328 |
+
[2024-10-30 12:46:45,310] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
329 |
+
[2024-10-30 12:46:50,117] 31 root - INFO - Text response generated.
|
330 |
+
[2024-10-30 12:46:54,157] 28 root - INFO - Text response generated.
|
331 |
+
[2024-10-30 12:46:54,450] 30 root - INFO - Sentiment of response generated.
|
332 |
+
[2024-10-30 12:46:54,451] 32 root - INFO - Response sentiment received.
|
333 |
+
[2024-10-30 12:47:02,700] 19 root - INFO - Response text convertion to audio done.
|
334 |
+
[2024-10-30 12:47:02,700] 36 root - INFO - Generated response saved as audio mp3 format.
|
335 |
+
[2024-10-30 12:47:02,701] 67 root - INFO - Generated response stored in response.txt file in artifacts folder.
|
336 |
+
[2024-10-30 12:47:02,703] 73 root - INFO - Stored text loaded.
|
337 |
+
[2024-10-30 12:47:10,697] 19 root - INFO - Response text convertion to audio done.
|
338 |
+
[2024-10-30 12:47:10,698] 23 root - INFO - Generated audio file loaded
|
339 |
+
[2024-10-30 12:47:57,434] 32 root - INFO - Created audio file removed for entry of new file.
|
340 |
+
[2024-10-30 12:48:00,944] 413 huggingface_hub._login - WARNING - Note: Environment variable`HF_TOKEN` is set and is the current active token independently from the token you've just configured.
|
logs/10_30_2024_13_20_32.log
ADDED
File without changes
|
src/components/__pycache__/avatarsys.cpython-311.pyc
CHANGED
Binary files a/src/components/__pycache__/avatarsys.cpython-311.pyc and b/src/components/__pycache__/avatarsys.cpython-311.pyc differ
|
|
src/components/__pycache__/docchat.cpython-311.pyc
CHANGED
Binary files a/src/components/__pycache__/docchat.cpython-311.pyc and b/src/components/__pycache__/docchat.cpython-311.pyc differ
|
|
src/components/__pycache__/emotionanalyz.cpython-311.pyc
CHANGED
Binary files a/src/components/__pycache__/emotionanalyz.cpython-311.pyc and b/src/components/__pycache__/emotionanalyz.cpython-311.pyc differ
|
|
src/components/__pycache__/textprocess.cpython-311.pyc
CHANGED
Binary files a/src/components/__pycache__/textprocess.cpython-311.pyc and b/src/components/__pycache__/textprocess.cpython-311.pyc differ
|
|
src/components/__pycache__/voicesynth.cpython-311.pyc
CHANGED
Binary files a/src/components/__pycache__/voicesynth.cpython-311.pyc and b/src/components/__pycache__/voicesynth.cpython-311.pyc differ
|
|
src/utils/__pycache__/accessory.cpython-311.pyc
CHANGED
Binary files a/src/utils/__pycache__/accessory.cpython-311.pyc and b/src/utils/__pycache__/accessory.cpython-311.pyc differ
|
|