richardkimsm89 commited on
Commit
c6925d2
·
verified ·
1 Parent(s): e6d6ab6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -37
app.py CHANGED
@@ -7,15 +7,15 @@ model = "meta-llama/Llama-3.2-3B-Instruct"
7
  client = InferenceClient(model)
8
 
9
  def fn(
10
- message,
11
  #history: list[tuple[str, str]],
12
  history,
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]:
@@ -23,19 +23,21 @@ def fn(
23
  # if val[1]:
24
  # messages.append({"role": "assistant", "content": val[1]})
25
 
26
- messages.append({"role": "user", "content": message})
27
 
28
- response = ""
29
 
30
- for message in client.chat_completion(
31
- messages,
 
 
32
  max_tokens = max_tokens,
33
  temperature = temperature,
34
  top_p = top_p,
35
  stream = True,
36
  ):
 
37
  token = message.choices[0].delta.content
38
-
39
  response += token
40
  yield response
41
 
@@ -43,7 +45,7 @@ app = gr.ChatInterface(
43
  fn = fn,
44
  type = "messages",
45
  additional_inputs = [
46
- gr.Textbox(value="You are a helpful assistant.", label="System Message"),
47
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max Tokens"),
48
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
49
  gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-P"),
@@ -53,31 +55,4 @@ app = gr.ChatInterface(
53
  )
54
 
55
  if __name__ == "__main__":
56
- app.launch()
57
-
58
- """
59
- # Pipeline
60
-
61
- import gradio as gr
62
- from transformers import pipeline
63
-
64
- pipe = pipeline(model = "meta-llama/Llama-3.2-3B-Instruct")
65
-
66
- def fn(input):
67
- output = pipe(
68
- input,
69
- max_new_tokens = 2048
70
- )
71
- return output[0]["generated_text"]#[len(input):]
72
-
73
- app = gr.Interface(
74
- fn = fn,
75
- inputs = [gr.Textbox(label = "Input")],
76
- outputs = [gr.Textbox(label = "Output")],
77
- title = "Meta Llama",
78
- description = "Pipeline",
79
- examples = [
80
- ["Hello, World."]
81
- ]
82
- ).launch()
83
- """
 
7
  client = InferenceClient(model)
8
 
9
  def fn(
10
+ prompt,
11
  #history: list[tuple[str, str]],
12
  history,
13
+ #system_prompt,
14
  max_tokens,
15
  temperature,
16
  top_p,
17
  ):
18
+ #messages = [{"role": "system", "content": system_prompt}]
19
 
20
  #for val in history:
21
  # if val[0]:
 
23
  # if val[1]:
24
  # messages.append({"role": "assistant", "content": val[1]})
25
 
26
+ #messages.append({"role": "user", "content": prompt})
27
 
28
+ messages = [{"role": "user", "content": prompt}]
29
 
30
+ for prompt in client.chat.completions.create(
31
+ #for prompt in client.chat_completion(
32
+ model = model,
33
+ messages = messages,
34
  max_tokens = max_tokens,
35
  temperature = temperature,
36
  top_p = top_p,
37
  stream = True,
38
  ):
39
+ response = ""
40
  token = message.choices[0].delta.content
 
41
  response += token
42
  yield response
43
 
 
45
  fn = fn,
46
  type = "messages",
47
  additional_inputs = [
48
+ gr.Textbox(value="You are a helpful assistant.", label="System Prompt"),
49
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max Tokens"),
50
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
51
  gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-P"),
 
55
  )
56
 
57
  if __name__ == "__main__":
58
+ app.launch()