gathnex commited on
Commit
fd10164
1 Parent(s): 3e5975d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,11 +2,11 @@ from ctransformers import AutoModelForCausalLM
2
  import gradio as gr
3
 
4
  greety = """
5
- As a derivate work of [Linkedin Automation System](https://medium.com/@gathnex) by Gathnex,
6
  Follow us on [linkedin](https://www.linkedin.com/company/gathnex/) and [Github](https://github.com/gathnexadmin). A special thanks to the Gathnex team members who made a significant contribution to this project.
7
  """
8
 
9
- llm = AutoModelForCausalLM.from_pretrained("TheBloke/zephyr-7B-beta-GGUF/zephyr-7b-beta.Q4_K_S.gguf",
10
  model_type='mistral',
11
  max_new_tokens = 1096,
12
  threads = 3,
@@ -52,7 +52,7 @@ chat_interface = gr.ChatInterface(
52
  )
53
 
54
  with gr.Blocks(css=css) as demo:
55
- gr.HTML("<h1><center>Gathnex Linkedin Automation using Generative AI<h1><center>")
56
  gr.HTML("<h3><center><a href='https://medium.com/@gathnex'>Gathnex AI</a>💬<h3><center>")
57
  gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
58
  chat_interface.render()
 
2
  import gradio as gr
3
 
4
  greety = """
5
+ Follow [Gathnex](https://medium.com/@gathnex) on more update on Genrative AI, LLM,
6
  Follow us on [linkedin](https://www.linkedin.com/company/gathnex/) and [Github](https://github.com/gathnexadmin). A special thanks to the Gathnex team members who made a significant contribution to this project.
7
  """
8
 
9
+ llm = AutoModelForCausalLM.from_pretrained("zephyr-7b-beta.Q4_K_S.gguf",
10
  model_type='mistral',
11
  max_new_tokens = 1096,
12
  threads = 3,
 
52
  )
53
 
54
  with gr.Blocks(css=css) as demo:
55
+ gr.HTML("<h1><center>Gathnex Free LLM Deployment Space<h1><center>")
56
  gr.HTML("<h3><center><a href='https://medium.com/@gathnex'>Gathnex AI</a>💬<h3><center>")
57
  gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
58
  chat_interface.render()