Fisharp lvwerra HF staff commited on
Commit
ab218e2
0 Parent(s):

Duplicate from bigcode/bigcode-playground

Browse files

Co-authored-by: Leandro von Werra <lvwerra@users.noreply.huggingface.co>

Files changed (6) hide show
  1. .gitattributes +34 -0
  2. .gitignore +160 -0
  3. README.md +13 -0
  4. app.py +254 -0
  5. requirements.txt +2 -0
  6. share_btn.py +112 -0
.gitattributes ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tflite filter=lfs diff=lfs merge=lfs -text
29
+ *.tgz filter=lfs diff=lfs merge=lfs -text
30
+ *.wasm filter=lfs diff=lfs merge=lfs -text
31
+ *.xz filter=lfs diff=lfs merge=lfs -text
32
+ *.zip filter=lfs diff=lfs merge=lfs -text
33
+ *.zst filter=lfs diff=lfs merge=lfs -text
34
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/#use-with-ide
110
+ .pdm.toml
111
+
112
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
+ __pypackages__/
114
+
115
+ # Celery stuff
116
+ celerybeat-schedule
117
+ celerybeat.pid
118
+
119
+ # SageMath parsed files
120
+ *.sage.py
121
+
122
+ # Environments
123
+ .env
124
+ .venv
125
+ env/
126
+ venv/
127
+ ENV/
128
+ env.bak/
129
+ venv.bak/
130
+
131
+ # Spyder project settings
132
+ .spyderproject
133
+ .spyproject
134
+
135
+ # Rope project settings
136
+ .ropeproject
137
+
138
+ # mkdocs documentation
139
+ /site
140
+
141
+ # mypy
142
+ .mypy_cache/
143
+ .dmypy.json
144
+ dmypy.json
145
+
146
+ # Pyre type checker
147
+ .pyre/
148
+
149
+ # pytype static type analyzer
150
+ .pytype/
151
+
152
+ # Cython debug symbols
153
+ cython_debug/
154
+
155
+ # PyCharm
156
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
159
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
160
+ #.idea/
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: BigCode - Playground
3
+ emoji: 🪐
4
+ colorFrom: grey
5
+ colorTo: yellow
6
+ sdk: gradio
7
+ sdk_version: 3.28.3
8
+ app_file: app.py
9
+ pinned: false
10
+ duplicated_from: bigcode/bigcode-playground
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import os
3
+ import shutil
4
+ import requests
5
+
6
+ import gradio as gr
7
+ from huggingface_hub import Repository
8
+ from text_generation import Client
9
+
10
+ from share_btn import community_icon_html, loading_icon_html, share_js, share_btn_css
11
+
12
+ HF_TOKEN = os.environ.get("HF_TOKEN", None)
13
+ API_URL = "https://api-inference.huggingface.co/models/bigcode/starcoder/"
14
+ API_URL_BASE ="https://api-inference.huggingface.co/models/bigcode/starcoderbase/"
15
+
16
+ FIM_PREFIX = "<fim_prefix>"
17
+ FIM_MIDDLE = "<fim_middle>"
18
+ FIM_SUFFIX = "<fim_suffix>"
19
+
20
+ FIM_INDICATOR = "<FILL_HERE>"
21
+
22
+ FORMATS = """## Model Formats
23
+
24
+ The model is pretrained on code and is formatted with special tokens in addition to the pure code data,\
25
+ such as prefixes specifying the source of the file or tokens separating code from a commit message.\
26
+ Use these templates to explore the model's capacities:
27
+
28
+ ### 1. Prefixes 🏷️
29
+ For pure code files, use any combination of the following prefixes:
30
+
31
+ ```
32
+ <reponame>REPONAME<filename>FILENAME<gh_stars>STARS\ncode<|endoftext|>
33
+ ```
34
+ STARS can be one of: 0, 1-10, 10-100, 100-1000, 1000+
35
+
36
+ ### 2. Commits 💾
37
+ The commits data is formatted as follows:
38
+
39
+ ```
40
+ <commit_before>code<commit_msg>text<commit_after>code<|endoftext|>
41
+ ```
42
+
43
+ ### 3. Jupyter Notebooks 📓
44
+ The model is trained on Jupyter notebooks as Python scripts and structured formats like:
45
+
46
+ ```
47
+ <start_jupyter><jupyter_text>text<jupyter_code>code<jupyter_output>output<jupyter_text>
48
+ ```
49
+
50
+ ### 4. Issues 🐛
51
+ We also trained on GitHub issues using the following formatting:
52
+ ```
53
+ <issue_start><issue_comment>text<issue_comment>...<issue_closed>
54
+ ```
55
+
56
+ ### 5. Fill-in-the-middle 🧩
57
+ Fill in the middle requires rearranging the model inputs. The playground handles this for you - all you need is to specify where to fill:
58
+ ```
59
+ code before<FILL_HERE>code after
60
+ ```
61
+ """
62
+
63
+ theme = gr.themes.Monochrome(
64
+ primary_hue="indigo",
65
+ secondary_hue="blue",
66
+ neutral_hue="slate",
67
+ radius_size=gr.themes.sizes.radius_sm,
68
+ font=[
69
+ gr.themes.GoogleFont("Open Sans"),
70
+ "ui-sans-serif",
71
+ "system-ui",
72
+ "sans-serif",
73
+ ],
74
+ )
75
+
76
+ client = Client(
77
+ API_URL,
78
+ headers={"Authorization": f"Bearer {HF_TOKEN}"},
79
+ )
80
+ client_base = Client(
81
+ API_URL_BASE, headers={"Authorization": f"Bearer {HF_TOKEN}"},
82
+ )
83
+
84
+ def generate(
85
+ prompt, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0, version="StarCoder",
86
+ ):
87
+
88
+ temperature = float(temperature)
89
+ if temperature < 1e-2:
90
+ temperature = 1e-2
91
+ top_p = float(top_p)
92
+ fim_mode = False
93
+
94
+ generate_kwargs = dict(
95
+ temperature=temperature,
96
+ max_new_tokens=max_new_tokens,
97
+ top_p=top_p,
98
+ repetition_penalty=repetition_penalty,
99
+ do_sample=True,
100
+ seed=42,
101
+ )
102
+
103
+ if FIM_INDICATOR in prompt:
104
+ fim_mode = True
105
+ try:
106
+ prefix, suffix = prompt.split(FIM_INDICATOR)
107
+ except:
108
+ raise ValueError(f"Only one {FIM_INDICATOR} allowed in prompt!")
109
+ prompt = f"{FIM_PREFIX}{prefix}{FIM_SUFFIX}{suffix}{FIM_MIDDLE}"
110
+
111
+ if version == "StarCoder":
112
+ stream = client.generate_stream(prompt, **generate_kwargs)
113
+ else:
114
+ stream = client_base.generate_stream(prompt, **generate_kwargs)
115
+
116
+ if fim_mode:
117
+ output = prefix
118
+ else:
119
+ output = prompt
120
+
121
+ previous_token = ""
122
+ for response in stream:
123
+ if response.token.text == "<|endoftext|>":
124
+ if fim_mode:
125
+ output += suffix
126
+ else:
127
+ return output
128
+ else:
129
+ output += response.token.text
130
+ previous_token = response.token.text
131
+ yield output
132
+ return output
133
+
134
+
135
+ examples = [
136
+ "X_train, y_train, X_test, y_test = train_test_split(X, y, test_size=0.1)\n\n# Train a logistic regression model, predict the labels on the test set and compute the accuracy score",
137
+ "// Returns every other value in the array as a new array.\nfunction everyOther(arr) {",
138
+ "def alternating(list1, list2):\n results = []\n for i in range(min(len(list1), len(list2))):\n results.append(list1[i])\n results.append(list2[i])\n if len(list1) > len(list2):\n <FILL_HERE>\n else:\n results.extend(list2[i+1:])\n return results",
139
+ ]
140
+
141
+
142
+ def process_example(args):
143
+ for x in generate(args):
144
+ pass
145
+ return x
146
+
147
+
148
+ css = ".generating {visibility: hidden}"
149
+
150
+ monospace_css = """
151
+ #q-input textarea {
152
+ font-family: monospace, 'Consolas', Courier, monospace;
153
+ }
154
+ """
155
+
156
+
157
+ css += share_btn_css + monospace_css + ".gradio-container {color: black}"
158
+
159
+
160
+ description = """
161
+ <div style="text-align: center;">
162
+ <h1> 💫 StarCoder<span style='color: #e6b800;'> - </span>Code Completion Playground 🪐</h1>
163
+ <p>This is a demo to generate code with <a href="https://huggingface.co/bigcode/starcoder" style='color: #e6b800;'>StarCoder</a>, a 15B parameter model for code generation in 86 programming languages.
164
+ <b>This is not an instruction model</b>. For instruction and chatting you can chat with a prompted version of the model at <a href="https://huggingface.co/chat/?model=bigcode/starcoder">hf.co/chat</a></p>
165
+ </div>
166
+ """
167
+ disclaimer = """⚠️<b>Any use or sharing of this demo constitues your acceptance of the BigCode [OpenRAIL-M](https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement) License Agreement and the use restrictions included within.</b>\
168
+ <br>**Intended Use**: this app and its [supporting model](https://huggingface.co/bigcode) are provided for demonstration purposes; not to serve as replacement for human expertise. For more details on the model's limitations in terms of factuality and biases, see the [model card.](hf.co/bigcode)"""
169
+
170
+ with gr.Blocks(theme=theme, analytics_enabled=False, css=css) as demo:
171
+ with gr.Column():
172
+ gr.Markdown(description)
173
+ with gr.Row():
174
+ with gr.Column():
175
+ instruction = gr.Textbox(
176
+ placeholder="Enter your code here",
177
+ label="Code",
178
+ elem_id="q-input",
179
+ )
180
+ submit = gr.Button("Generate", variant="primary")
181
+ output = gr.Code(elem_id="q-output", lines=30)
182
+ with gr.Row():
183
+ with gr.Column():
184
+ with gr.Accordion("Advanced settings", open=False):
185
+ with gr.Row():
186
+ column_1, column_2 = gr.Column(), gr.Column()
187
+ with column_1:
188
+ temperature = gr.Slider(
189
+ label="Temperature",
190
+ value=0.2,
191
+ minimum=0.0,
192
+ maximum=1.0,
193
+ step=0.05,
194
+ interactive=True,
195
+ info="Higher values produce more diverse outputs",
196
+ )
197
+ max_new_tokens = gr.Slider(
198
+ label="Max new tokens",
199
+ value=256,
200
+ minimum=0,
201
+ maximum=8192,
202
+ step=64,
203
+ interactive=True,
204
+ info="The maximum numbers of new tokens",
205
+ )
206
+ with column_2:
207
+ top_p = gr.Slider(
208
+ label="Top-p (nucleus sampling)",
209
+ value=0.90,
210
+ minimum=0.0,
211
+ maximum=1,
212
+ step=0.05,
213
+ interactive=True,
214
+ info="Higher values sample more low-probability tokens",
215
+ )
216
+ repetition_penalty = gr.Slider(
217
+ label="Repetition penalty",
218
+ value=1.2,
219
+ minimum=1.0,
220
+ maximum=2.0,
221
+ step=0.05,
222
+ interactive=True,
223
+ info="Penalize repeated tokens",
224
+ )
225
+ with gr.Column():
226
+ version = gr.Dropdown(
227
+ ["StarCoderBase", "StarCoder"],
228
+ value="StarCoder",
229
+ label="Version",
230
+ info="",
231
+ )
232
+ gr.Markdown(disclaimer)
233
+ with gr.Group(elem_id="share-btn-container"):
234
+ community_icon = gr.HTML(community_icon_html, visible=True)
235
+ loading_icon = gr.HTML(loading_icon_html, visible=True)
236
+ share_button = gr.Button(
237
+ "Share to community", elem_id="share-btn", visible=True
238
+ )
239
+ gr.Examples(
240
+ examples=examples,
241
+ inputs=[instruction],
242
+ cache_examples=False,
243
+ fn=process_example,
244
+ outputs=[output],
245
+ )
246
+ gr.Markdown(FORMATS)
247
+
248
+ submit.click(
249
+ generate,
250
+ inputs=[instruction, temperature, max_new_tokens, top_p, repetition_penalty, version],
251
+ outputs=[output],
252
+ )
253
+ share_button.click(None, [], [], _js=share_js)
254
+ demo.queue(concurrency_count=16).launch(debug=True)
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ huggingface_hub
2
+ text-generation==0.4.1
share_btn.py ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ community_icon_html = """<svg id="share-btn-share-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32">
2
+ <path d="M20.6081 3C21.7684 3 22.8053 3.49196 23.5284 4.38415C23.9756 4.93678 24.4428 5.82749 24.4808 7.16133C24.9674 7.01707 25.4353 6.93643 25.8725 6.93643C26.9833 6.93643 27.9865 7.37587 28.696 8.17411C29.6075 9.19872 30.0124 10.4579 29.8361 11.7177C29.7523 12.3177 29.5581 12.8555 29.2678 13.3534C29.8798 13.8646 30.3306 14.5763 30.5485 15.4322C30.719 16.1032 30.8939 17.5006 29.9808 18.9403C30.0389 19.0342 30.0934 19.1319 30.1442 19.2318C30.6932 20.3074 30.7283 21.5229 30.2439 22.6548C29.5093 24.3704 27.6841 25.7219 24.1397 27.1727C21.9347 28.0753 19.9174 28.6523 19.8994 28.6575C16.9842 29.4379 14.3477 29.8345 12.0653 29.8345C7.87017 29.8345 4.8668 28.508 3.13831 25.8921C0.356375 21.6797 0.754104 17.8269 4.35369 14.1131C6.34591 12.058 7.67023 9.02782 7.94613 8.36275C8.50224 6.39343 9.97271 4.20438 12.4172 4.20438H12.4179C12.6236 4.20438 12.8314 4.2214 13.0364 4.25468C14.107 4.42854 15.0428 5.06476 15.7115 6.02205C16.4331 5.09583 17.134 4.359 17.7682 3.94323C18.7242 3.31737 19.6794 3 20.6081 3ZM20.6081 5.95917C20.2427 5.95917 19.7963 6.1197 19.3039 6.44225C17.7754 7.44319 14.8258 12.6772 13.7458 14.7131C13.3839 15.3952 12.7655 15.6837 12.2086 15.6837C11.1036 15.6837 10.2408 14.5497 12.1076 13.1085C14.9146 10.9402 13.9299 7.39584 12.5898 7.1776C12.5311 7.16799 12.4731 7.16355 12.4172 7.16355C11.1989 7.16355 10.6615 9.33114 10.6615 9.33114C10.6615 9.33114 9.0863 13.4148 6.38031 16.206C3.67434 18.998 3.5346 21.2388 5.50675 24.2246C6.85185 26.2606 9.42666 26.8753 12.0653 26.8753C14.8021 26.8753 17.6077 26.2139 19.1799 25.793C19.2574 25.7723 28.8193 22.984 27.6081 20.6107C27.4046 20.212 27.0693 20.0522 26.6471 20.0522C24.9416 20.0522 21.8393 22.6726 20.5057 22.6726C20.2076 22.6726 19.9976 22.5416 19.9116 22.222C19.3433 20.1173 28.552 19.2325 27.7758 16.1839C27.639 15.6445 27.2677 15.4256 26.746 15.4263C24.4923 15.4263 19.4358 19.5181 18.3759 19.5181C18.2949 19.5181 18.2368 19.4937 18.2053 19.4419C17.6743 18.557 17.9653 17.9394 21.7082 15.6009C25.4511 13.2617 28.0783 11.8545 26.5841 10.1752C26.4121 9.98141 26.1684 9.8956 25.8725 9.8956C23.6001 9.89634 18.2311 14.9403 18.2311 14.9403C18.2311 14.9403 16.7821 16.496 15.9057 16.496C15.7043 16.496 15.533 16.4139 15.4169 16.2112C14.7956 15.1296 21.1879 10.1286 21.5484 8.06535C21.7928 6.66715 21.3771 5.95917 20.6081 5.95917Z" fill="#FF9D00"></path>
3
+ <path d="M5.50686 24.2246C3.53472 21.2387 3.67446 18.9979 6.38043 16.206C9.08641 13.4147 10.6615 9.33111 10.6615 9.33111C10.6615 9.33111 11.2499 6.95933 12.59 7.17757C13.93 7.39581 14.9139 10.9401 12.1069 13.1084C9.29997 15.276 12.6659 16.7489 13.7459 14.713C14.8258 12.6772 17.7747 7.44316 19.304 6.44221C20.8326 5.44128 21.9089 6.00204 21.5484 8.06532C21.188 10.1286 14.795 15.1295 15.4171 16.2118C16.0391 17.2934 18.2312 14.9402 18.2312 14.9402C18.2312 14.9402 25.0907 8.49588 26.5842 10.1752C28.0776 11.8545 25.4512 13.2616 21.7082 15.6008C17.9646 17.9393 17.6744 18.557 18.2054 19.4418C18.7372 20.3266 26.9998 13.1351 27.7759 16.1838C28.5513 19.2324 19.3434 20.1173 19.9117 22.2219C20.48 24.3274 26.3979 18.2382 27.6082 20.6107C28.8193 22.9839 19.2574 25.7722 19.18 25.7929C16.0914 26.62 8.24723 28.3726 5.50686 24.2246Z" fill="#FFD21E"></path>
4
+ </svg>"""
5
+
6
+ loading_icon_html = """<svg id="share-btn-loading-icon" style="display:none;" class="animate-spin"
7
+ style="color: #ffffff;
8
+ "
9
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="none" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><circle style="opacity: 0.25;" cx="12" cy="12" r="10" stroke="white" stroke-width="4"></circle><path style="opacity: 0.75;" fill="white" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path></svg>"""
10
+
11
+ share_js = """async () => {
12
+ async function uploadFile(file){
13
+ const UPLOAD_URL = 'https://huggingface.co/uploads';
14
+ const response = await fetch(UPLOAD_URL, {
15
+ method: 'POST',
16
+ headers: {
17
+ 'Content-Type': file.type,
18
+ 'X-Requested-With': 'XMLHttpRequest',
19
+ },
20
+ body: file, /// <- File inherits from Blob
21
+ });
22
+ const url = await response.text();
23
+ return url;
24
+ }
25
+
26
+ async function getInputImgFile(imgEl){
27
+ const res = await fetch(imgEl.src);
28
+ const blob = await res.blob();
29
+ const imgId = Date.now() % 200;
30
+ const isPng = imgEl.src.startsWith(`data:image/png`);
31
+ if(isPng){
32
+ const fileName = `sd-perception-${{imgId}}.png`;
33
+ return new File([blob], fileName, { type: 'image/png' });
34
+ }else{
35
+ const fileName = `sd-perception-${{imgId}}.jpg`;
36
+ return new File([blob], fileName, { type: 'image/jpeg' });
37
+ }
38
+ }
39
+
40
+ // const gradioEl = document.querySelector('body > gradio-app');
41
+ const gradioEl = document.querySelector("gradio-app");
42
+ const inputTxt = gradioEl.querySelector('#q-input textarea').value;
43
+ let outputTxt = gradioEl.querySelector('#q-output .codemirror-wrapper .cm-scroller > div:nth-of-type(2)').innerText;
44
+ outputTxt = `<pre>${outputTxt}</pre>`
45
+
46
+ const titleLength = 150;
47
+ let titleTxt = inputTxt;
48
+ if(titleTxt.length > titleLength){
49
+ titleTxt = titleTxt.slice(0, titleLength) + ' ...';
50
+ }
51
+
52
+ const shareBtnEl = gradioEl.querySelector('#share-btn');
53
+ const shareIconEl = gradioEl.querySelector('#share-btn-share-icon');
54
+ const loadingIconEl = gradioEl.querySelector('#share-btn-loading-icon');
55
+
56
+ if(!inputTxt || !outputTxt){
57
+ return;
58
+ };
59
+
60
+ shareBtnEl.style.pointerEvents = 'none';
61
+ shareIconEl.style.display = 'none';
62
+ loadingIconEl.style.removeProperty('display');
63
+
64
+ const descriptionMd = `### Question:
65
+ ${inputTxt}
66
+
67
+ ### Answer:
68
+
69
+ ${outputTxt}`;
70
+
71
+ const params = {
72
+ title: titleTxt,
73
+ description: descriptionMd,
74
+ };
75
+
76
+ const paramsStr = Object.entries(params)
77
+ .map(([key, value]) => `${encodeURIComponent(key)}=${encodeURIComponent(value)}`)
78
+ .join('&');
79
+
80
+ window.open(`https://huggingface.co/spaces/bigcode/bigcode-playground/discussions/new?${paramsStr}`, '_blank');
81
+
82
+ shareBtnEl.style.removeProperty('pointer-events');
83
+ shareIconEl.style.removeProperty('display');
84
+ loadingIconEl.style.display = 'none';
85
+ }"""
86
+
87
+ share_btn_css = """
88
+ a {text-decoration-line: underline; font-weight: 600;}
89
+ .animate-spin {
90
+ animation: spin 1s linear infinite;
91
+ }
92
+ @keyframes spin {
93
+ from { transform: rotate(0deg); }
94
+ to { transform: rotate(360deg); }
95
+ }
96
+ #share-btn-container {
97
+ display: flex; padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; width: 13rem;
98
+ }
99
+ #share-btn {
100
+ all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.25rem !important; padding-bottom: 0.25rem !important;
101
+ }
102
+ #share-btn * {
103
+ all: unset;
104
+ }
105
+ #share-btn-container div:nth-child(-n+2){
106
+ width: auto !important;
107
+ min-height: 0px !important;
108
+ }
109
+ #share-btn-container .wrap {
110
+ display: none !important;
111
+ }
112
+ """