Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
# version - ArcticMonkey:19.03.24:1743
|
2 |
|
|
|
3 |
import psutil
|
4 |
# components from other authors
|
5 |
from streamlit_mic_recorder import mic_recorder
|
@@ -14,6 +15,7 @@ llm_model = LLM_Factory()
|
|
14 |
|
15 |
trigger = {"lc": "small"}
|
16 |
|
|
|
17 |
|
18 |
def prepare_cor(input_text: str):
|
19 |
return build_chain.build_command_chain().handle_command(input_text)
|
|
|
1 |
# version - ArcticMonkey:19.03.24:1743
|
2 |
|
3 |
+
import platform
|
4 |
import psutil
|
5 |
# components from other authors
|
6 |
from streamlit_mic_recorder import mic_recorder
|
|
|
15 |
|
16 |
trigger = {"lc": "small"}
|
17 |
|
18 |
+
print(platform.version())
|
19 |
|
20 |
def prepare_cor(input_text: str):
|
21 |
return build_chain.build_command_chain().handle_command(input_text)
|