Kush1 commited on
Commit
4bd7767
1 Parent(s): f9231e3

Changes in app.py

Browse files
Files changed (3) hide show
  1. app.py +134 -17
  2. requirements.txt +9 -2
  3. style.css +16 -0
app.py CHANGED
@@ -1,25 +1,142 @@
 
 
 
1
  import gradio as gr
2
- import os
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
- model = "meta-llama/Llama-2-13b-chat-hf"
 
 
 
6
 
7
- API_URL = os.environ.get("API_URL")
8
- BEARER_TOKEN = os.environ.get("BEARER_TOKEN")
9
- import requests
10
 
11
- headers = {"Authorization": BEARER_TOKEN }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
- def query(payload):
14
- response = requests.post(API_URL, headers=headers, json=payload)
15
- return response.json()
16
-
17
- # output = query({
18
- # "inputs": "Can you please let us know more details about your ",
19
- # })
20
 
21
- def greet(name):
22
- return "Hello " + name + "!!"
23
 
24
- iface = gr.Interface(fn=query, inputs="text", outputs="text")
25
- iface.launch(share=True)
 
1
+ from threading import Thread
2
+ from typing import Iterator
3
+
4
  import gradio as gr
5
+ import spaces
6
+ import torch
7
+ from transformers import AutoModelForCausalLM, AutoTokenizer, TextIteratorStreamer
8
+
9
+ DEFAULT_SYSTEM_PROMPT = "You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature.\n\nIf a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information."
10
+ MAX_MAX_NEW_TOKENS = 2048
11
+ DEFAULT_MAX_NEW_TOKENS = 1024
12
+ MAX_INPUT_TOKEN_LENGTH = 4096
13
+
14
+ DESCRIPTION = """\
15
+ # Llama-2 7B Chat
16
+ This Space demonstrates model [Llama-2-7b-chat](https://huggingface.co/meta-llama/Llama-2-7b-chat) by Meta, a Llama 2 model with 7B parameters fine-tuned for chat instructions. Feel free to play with it, or duplicate to run generations without a queue! If you want to run your own service, you can also [deploy the model on Inference Endpoints](https://huggingface.co/inference-endpoints).
17
+ 🔎 For more details about the Llama 2 family of models and how to use them with `transformers`, take a look [at our blog post](https://huggingface.co/blog/llama2).
18
+ 🔨 Looking for an even more powerful model? Check out the [13B version](https://huggingface.co/spaces/huggingface-projects/llama-2-13b-chat) or the large [70B model demo](https://huggingface.co/spaces/ysharma/Explore_llamav2_with_TGI).
19
+ """
20
+
21
+ LICENSE = """
22
+ <p/>
23
+ ---
24
+ As a derivate work of [Llama-2-7b-chat](https://huggingface.co/meta-llama/Llama-2-7b-chat) by Meta,
25
+ this demo is governed by the original [license](https://huggingface.co/spaces/huggingface-projects/llama-2-7b-chat/blob/main/LICENSE.txt) and [acceptable use policy](https://huggingface.co/spaces/huggingface-projects/llama-2-7b-chat/blob/main/USE_POLICY.md).
26
+ """
27
+
28
+ if not torch.cuda.is_available():
29
+ DESCRIPTION += "\n<p>Running on CPU 🥶 This demo does not work on CPU.</p>"
30
+
31
+
32
+ if torch.cuda.is_available():
33
+ model_id = "meta-llama/Llama-2-7b-chat-hf"
34
+ model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float16, device_map="auto")
35
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
36
+ tokenizer.use_default_system_prompt = False
37
+
38
+
39
+ @spaces.GPU
40
+ def generate(
41
+ message: str,
42
+ chat_history: list[tuple[str, str]],
43
+ system_prompt: str,
44
+ max_new_tokens: int = 1024,
45
+ temperature: float = 0.6,
46
+ top_p: float = 0.9,
47
+ top_k: int = 50,
48
+ repetition_penalty: float = 1.2,
49
+ ) -> Iterator[str]:
50
+ conversation = []
51
+ if system_prompt:
52
+ conversation.append({"role": "system", "content": system_prompt})
53
+ for user, assistant in chat_history:
54
+ conversation.extend([{"role": "user", "content": user}, {"role": "assistant", "content": assistant}])
55
+ conversation.append({"role": "user", "content": message})
56
+
57
+ chat = tokenizer.apply_chat_template(conversation, tokenize=False)
58
+ inputs = tokenizer(chat, return_tensors="pt", add_special_tokens=False).to("cuda")
59
+ if len(inputs) > MAX_INPUT_TOKEN_LENGTH:
60
+ inputs = inputs[-MAX_INPUT_TOKEN_LENGTH:]
61
+ gr.Warning("Trimmed input from conversation as it was longer than {MAX_INPUT_TOKEN_LENGTH} tokens.")
62
 
63
+ streamer = TextIteratorStreamer(tokenizer, timeout=10.0, skip_prompt=True, skip_special_tokens=True)
64
+ generate_kwargs = dict(
65
+ inputs,
66
+ streamer=streamer,
67
+ max_new_tokens=max_new_tokens,
68
+ do_sample=True,
69
+ top_p=top_p,
70
+ top_k=top_k,
71
+ temperature=temperature,
72
+ num_beams=1,
73
+ repetition_penalty=repetition_penalty,
74
+ )
75
+ t = Thread(target=model.generate, kwargs=generate_kwargs)
76
+ t.start()
77
 
78
+ outputs = []
79
+ for text in streamer:
80
+ outputs.append(text)
81
+ yield "".join(outputs)
82
 
 
 
 
83
 
84
+ chat_interface = gr.ChatInterface(
85
+ fn=generate,
86
+ additional_inputs=[
87
+ gr.Textbox(label="System prompt", value=DEFAULT_SYSTEM_PROMPT, lines=6),
88
+ gr.Slider(
89
+ label="Max new tokens",
90
+ minimum=1,
91
+ maximum=MAX_MAX_NEW_TOKENS,
92
+ step=1,
93
+ value=DEFAULT_MAX_NEW_TOKENS,
94
+ ),
95
+ gr.Slider(
96
+ label="Temperature",
97
+ minimum=0.1,
98
+ maximum=4.0,
99
+ step=0.1,
100
+ value=0.6,
101
+ ),
102
+ gr.Slider(
103
+ label="Top-p (nucleus sampling)",
104
+ minimum=0.05,
105
+ maximum=1.0,
106
+ step=0.05,
107
+ value=0.9,
108
+ ),
109
+ gr.Slider(
110
+ label="Top-k",
111
+ minimum=1,
112
+ maximum=1000,
113
+ step=1,
114
+ value=50,
115
+ ),
116
+ gr.Slider(
117
+ label="Repetition penalty",
118
+ minimum=1.0,
119
+ maximum=2.0,
120
+ step=0.05,
121
+ value=1.2,
122
+ ),
123
+ ],
124
+ stop_btn=None,
125
+ examples=[
126
+ ["Hello there! How are you doing?"],
127
+ ["Can you explain briefly to me what is the Python programming language?"],
128
+ ["Explain the plot of Cinderella in a sentence."],
129
+ ["How many hours does it take a man to eat a Helicopter?"],
130
+ ["Write a 100-word article on 'Benefits of Open-Source in AI research'"],
131
+ ],
132
+ )
133
 
134
+ with gr.Blocks(css="style.css") as demo:
135
+ gr.Markdown(DESCRIPTION)
136
+ gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
137
+ chat_interface.render()
138
+ gr.Markdown(LICENSE)
 
 
139
 
140
+ if __name__ == "__main__":
141
+ demo.queue(max_size=20).launch()
142
 
 
 
requirements.txt CHANGED
@@ -1,2 +1,9 @@
1
- gradio
2
- requests
 
 
 
 
 
 
 
 
1
+ accelerate==0.23.0
2
+ bitsandbytes==0.41.1
3
+ gradio==3.47.1
4
+ protobuf==3.20.3
5
+ scipy==1.11.2
6
+ sentencepiece==0.1.99
7
+ spaces==0.16.1
8
+ torch==2.0.0
9
+ transformers==4.34.0
style.css ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ h1 {
2
+ text-align: center;
3
+ }
4
+
5
+ #duplicate-button {
6
+ margin: auto;
7
+ color: white;
8
+ background: #1565c0;
9
+ border-radius: 100vh;
10
+ }
11
+
12
+ .contain {
13
+ max-width: 900px;
14
+ margin: auto;
15
+ padding-top: 1.5rem;
16
+ }