CineAI commited on
Commit
179b941
1 Parent(s): 814951a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -11
app.py CHANGED
@@ -2,8 +2,8 @@
2
 
3
  # python core libraries
4
  import os
 
5
  import psutil
6
- import platform
7
 
8
  # components from other authors
9
  from streamlit_mic_recorder import mic_recorder
@@ -20,23 +20,15 @@ greeting_text = "Hi, my name is M8... oops, that's from my future, but right now
20
 
21
  llm_model = LLM_Factory()
22
 
23
- print(platform.node())
24
-
25
- mac_address = platform.node()
26
-
27
  def prepare_cor(input_text: str):
28
  return build_chain.build_command_chain().handle_command(input_text)
29
 
30
- # Якщо MAC адреса співпадає з адресою цього Space, тоді використовується hf endpoint, це базова перевірка для trigger.
31
  # Від можливості використовувати AI agent також буде залежати trigger, якщо використовується, то ліпше використовувати lc ніж hf.
32
- if mac_address[-5:] == os.environ.get('MAC_address'):
33
- trigger = {"hf": "effective"}
34
- else:
35
- trigger = {"lc": "small"}
36
 
37
  t2a = T2A()
38
 
39
-
40
  def main():
41
  mic = mic_recorder(start_prompt="Record", stop_prompt="Stop", just_once=True)
42
 
 
2
 
3
  # python core libraries
4
  import os
5
+
6
  import psutil
 
7
 
8
  # components from other authors
9
  from streamlit_mic_recorder import mic_recorder
 
20
 
21
  llm_model = LLM_Factory()
22
 
 
 
 
 
23
  def prepare_cor(input_text: str):
24
  return build_chain.build_command_chain().handle_command(input_text)
25
 
26
+ # Базово буде hf, а далі виходячи з завдання буде змінюватися.
27
  # Від можливості використовувати AI agent також буде залежати trigger, якщо використовується, то ліпше використовувати lc ніж hf.
28
+ trigger = {"hf": "effective"}
 
 
 
29
 
30
  t2a = T2A()
31
 
 
32
  def main():
33
  mic = mic_recorder(start_prompt="Record", stop_prompt="Stop", just_once=True)
34