Spaces:
Runtime error
Runtime error
File size: 2,189 Bytes
2b7da55 8259bb2 2b7da55 65ad43e 2b7da55 65ad43e 53a498b 2b7da55 53a498b 4bebae2 7f8afa2 53a498b 7f8afa2 65ad43e 7f8afa2 4bebae2 53a498b 4bebae2 7f8afa2 4f6c52f 7d8fd50 4f6c52f 7f8afa2 4f6c52f 476d44d 2b7da55 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
import json
import gradio as gr
import requests as req
code_nl = "function for db connection"
CT5_URL = "https://api-inference.huggingface.co/models/nielsr/codet5-small-code-summarization-ruby"
CT5_METHOD = 'POST'
API_URL = CT5_URL
headers = {"Authorization": "Bearer api_UhCKXKyqxJOpOcbvrZurQFqmVNZRTtxVfl"}
def query(payload):
response = req.post(API_URL, headers=headers, json=payload)
return response.json()
function_code = r"""
def fetch_archive_from_http(url: str, output_dir: str, proxies: Optional[dict] = None) -> bool:
path = Path(output_dir)
if not path.exists():
path.mkdir(parents=True)
is_not_empty = len(list(Path(path).rglob("*"))) > 0
if is_not_empty:
return False
else:
_, _, archive_extension = url.rpartition(".")
request_data = requests.get(url, proxies=proxies)
if archive_extension == "zip":
zip_archive = zipfile.ZipFile(io.BytesIO(request_data.content))
zip_archive.extractall(output_dir)
elif archive_extension in ["gz", "bz2", "xz"]:
tar_archive = tarfile.open(fileobj=io.BytesIO(request_data.content), mode="r|*")
tar_archive.extractall(output_dir)
else:
pass
return True
"""
real_docstring = r"""
Fetch an archive (zip or tar.gz) from a url via http and extract content to an output directory.
:param url: http address
:param output_dir: local path
:param proxies: proxies details as required by requests library
:return: if anything got fetched
"""
def pygen_func(function_code):
req_data = {"inputs": function_code}
output = query(req_data)
return str(output)
# inputs = {'code_nl': code_nl}
# payload = json.dumps(inputs)
# prediction = req.request(CT5_METHOD, CT5_URL, data=payload)
# prediction = req.request(CT5_METHOD, CT5_URL, json=req_data)
# answer = json.loads(prediction.content.decode("utf-8"))
# return str(answer)
iface = gr.Interface(pygen_func,
[
gr.inputs.Textbox(lines=7, label="Code Intent NL", default=function_code),
],
gr.outputs.Textbox(label="Code Generated PL"))
iface.launch(share=True) |