feler404 commited on
Commit
a5a041e
·
1 Parent(s): 206d984

conntect to urzedasek endpoint

Browse files
Files changed (3) hide show
  1. .gitignore +2 -0
  2. app.py +41 -31
  3. requirements.txt +2 -1
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ .env
2
+ .idea
app.py CHANGED
@@ -1,21 +1,46 @@
 
 
1
  import gradio as gr
2
- from huggingface_hub import InferenceClient
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
- """
5
- For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
- """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
 
8
 
9
 
10
  def respond(
11
  message,
12
  history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
  ):
18
- messages = [{"role": "system", "content": system_message}]
19
 
20
  for val in history:
21
  if val[0]:
@@ -27,17 +52,11 @@ def respond(
27
 
28
  response = ""
29
 
30
- for message in client.chat_completion(
31
- messages,
32
- max_tokens=max_tokens,
33
- stream=True,
34
- temperature=temperature,
35
- top_p=top_p,
36
- ):
37
- token = message.choices[0].delta.content
38
 
39
- response += token
40
- yield response
41
 
42
  """
43
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
@@ -45,19 +64,10 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
45
  demo = gr.ChatInterface(
46
  respond,
47
  additional_inputs=[
48
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
49
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
50
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
51
- gr.Slider(
52
- minimum=0.1,
53
- maximum=1.0,
54
- value=0.95,
55
- step=0.05,
56
- label="Top-p (nucleus sampling)",
57
- ),
58
  ],
59
  )
60
 
61
 
62
  if __name__ == "__main__":
63
- demo.launch()
 
1
+ import time
2
+ import os
3
  import gradio as gr
4
+ import requests as requests
5
+
6
+
7
+ URZEDASEK_ENDPOINT = os.getenv("URZEDASEK_ENDPOINT", "http://0.0.0.0:8000/v1/chat/urzedasek")
8
+ ANONYMOUS_TOKEN = os.getenv("ANONYMOUS_TOKEN")
9
+
10
+
11
+ class UrzedasekInferenceClient():
12
+
13
+ def chat_completion(
14
+ self,
15
+ messages,
16
+ ):
17
+ auth_header = {
18
+ "Authorization": f"Token {ANONYMOUS_TOKEN}"
19
+ }
20
+ ret = requests.post(
21
+ URZEDASEK_ENDPOINT,
22
+ headers=auth_header,
23
+ json={
24
+ "messages": messages,
25
+ },
26
+ )
27
+ return ret.json()['result']['urzedas_answer_builder']['replies']
28
+
29
+
30
+ client = UrzedasekInferenceClient()
31
 
32
+
33
+ def chunker(result):
34
+ for i in range(0, len(result), 40):
35
+ time.sleep(0.1)
36
+ yield result[i:i + 40]
37
 
38
 
39
  def respond(
40
  message,
41
  history: list[tuple[str, str]],
 
 
 
 
42
  ):
43
+ messages = []
44
 
45
  for val in history:
46
  if val[0]:
 
52
 
53
  response = ""
54
 
55
+ for message in client.chat_completion(messages,):
56
+ for chunk in chunker(message):
57
+ response += chunk
58
+ yield response
 
 
 
 
59
 
 
 
60
 
61
  """
62
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
 
64
  demo = gr.ChatInterface(
65
  respond,
66
  additional_inputs=[
67
+ # gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
 
 
 
 
 
 
 
 
 
68
  ],
69
  )
70
 
71
 
72
  if __name__ == "__main__":
73
+ demo.launch(share=True)
requirements.txt CHANGED
@@ -1 +1,2 @@
1
- huggingface_hub==0.22.2
 
 
1
+ huggingface_hub==0.22.2
2
+ requests==2.31.0