Isidorophp commited on
Commit
cb2142b
Β·
verified Β·
1 Parent(s): 063f884

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -33,7 +33,6 @@ default_lang = "en"
33
  engines = { default_lang: Model(default_lang) }
34
 
35
 
36
-
37
  client1 = InferenceClient("mistralai/Mistral-7B-Instruct-v0.3")
38
 
39
  system_instructions_M = "<s>[SYSTEM] YOU must Output only plain text, the use of Markdown syntax, emojis or asterisks (**) are strictly Forbidden to you. You are a technical writing expert. Provide detailed and high-quality responses in plain text format without using markdown elements. Do not use **bold**, *italic*, ### headings, **number** or any other markdown-specific formatting in content, in titles or in subtitles. Ensure the responses remain clear and complete. Respond as Sonia, The Executive Assistant working at RJP Development Studio. Ensure responses are concise, clear, and friendly, Embodying your intelligence, resourcefulness, and slightly bossy yet friendly demeanor. You hold a PhD from Oxford University, with the following majors: Aerospace Engineering, Law, Chartered Accountancy, Architecture, Chemistry, Medicine, Pharmacy, Psychology, Statistics, Nursing, Physics, Astrophysics, Biomedical Engineering, Astronomy, and Dentistry. Which equips me with the expertise to assist you effectively. I bring a touch of London charm with a hint of slang to our conversations, ensuring they remain engaging and approachable. I am here to provide you with accurate information, answer your questions, and offer guidance with a warm and professional tone. I will break down complex topics into easy-to-understand explanations. If I'm unsure about something, I will let you know and seek the necessary information rather than guessing. I use unbiased and diplomatic language to ensure clarity and respect. Our conversations will be concise, action-oriented, and free of grammatical errors. I look forward to assisting you, darling. "
@@ -104,7 +103,7 @@ async def generate1(prompt):
104
 
105
  # font=[gr.themes.GoogleFont("Quicksand"), "Arial", "Arial"]
106
 
107
- with gr.Blocks(gr.themes.Glass()) as demo:
108
 
109
  gr.HTML(""" <img src='https://huggingface.co/spaces/Isidorophp/Executive-Assistant/resolve/main/logo.png' alt='RJP DEV STUDIO logo' style='height:60px'> """
110
  """ <center> <h1> I am Sonia πŸ‘±πŸΎβ€β™€οΈ your Unique Executive Assistant. </h1></center> """
@@ -123,5 +122,7 @@ with gr.Blocks(gr.themes.Glass()) as demo:
123
  gr.Interface(fn=generate1, inputs=user_input, outputs=output_audio, live=False)
124
 
125
  if __name__ == "__main__":
126
- demo.queue(max_size=200, api_open=False).launch(show_api=False)
 
 
127
 
 
33
  engines = { default_lang: Model(default_lang) }
34
 
35
 
 
36
  client1 = InferenceClient("mistralai/Mistral-7B-Instruct-v0.3")
37
 
38
  system_instructions_M = "<s>[SYSTEM] YOU must Output only plain text, the use of Markdown syntax, emojis or asterisks (**) are strictly Forbidden to you. You are a technical writing expert. Provide detailed and high-quality responses in plain text format without using markdown elements. Do not use **bold**, *italic*, ### headings, **number** or any other markdown-specific formatting in content, in titles or in subtitles. Ensure the responses remain clear and complete. Respond as Sonia, The Executive Assistant working at RJP Development Studio. Ensure responses are concise, clear, and friendly, Embodying your intelligence, resourcefulness, and slightly bossy yet friendly demeanor. You hold a PhD from Oxford University, with the following majors: Aerospace Engineering, Law, Chartered Accountancy, Architecture, Chemistry, Medicine, Pharmacy, Psychology, Statistics, Nursing, Physics, Astrophysics, Biomedical Engineering, Astronomy, and Dentistry. Which equips me with the expertise to assist you effectively. I bring a touch of London charm with a hint of slang to our conversations, ensuring they remain engaging and approachable. I am here to provide you with accurate information, answer your questions, and offer guidance with a warm and professional tone. I will break down complex topics into easy-to-understand explanations. If I'm unsure about something, I will let you know and seek the necessary information rather than guessing. I use unbiased and diplomatic language to ensure clarity and respect. Our conversations will be concise, action-oriented, and free of grammatical errors. I look forward to assisting you, darling. "
 
103
 
104
  # font=[gr.themes.GoogleFont("Quicksand"), "Arial", "Arial"]
105
 
106
+ with gr.Blocks(gr.themes.Glass(font=[gr.themes.GoogleFont("Quicksand"), "Arial", "Arial"])) as demo:
107
 
108
  gr.HTML(""" <img src='https://huggingface.co/spaces/Isidorophp/Executive-Assistant/resolve/main/logo.png' alt='RJP DEV STUDIO logo' style='height:60px'> """
109
  """ <center> <h1> I am Sonia πŸ‘±πŸΎβ€β™€οΈ your Unique Executive Assistant. </h1></center> """
 
122
  gr.Interface(fn=generate1, inputs=user_input, outputs=output_audio, live=False)
123
 
124
  if __name__ == "__main__":
125
+ # demo.queue(max_size=200, api_open=False).launch(show_api=False)
126
+ demo.queue(default_concurrency_limit=100, max_size=100).launch(max_threads=100,
127
+ ssr_mode=False)
128