Spaces:
Runtime error
Runtime error
Commit
·
e27f3f4
1
Parent(s):
f1a0ffe
Create R2Python.py
Browse files- R2Python.py +36 -0
R2Python.py
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import openai
|
3 |
+
import os
|
4 |
+
|
5 |
+
# Set the API key for the OpenAI API
|
6 |
+
openai.api_key = os.environ["OPENAI_SECRET_KEY"]
|
7 |
+
|
8 |
+
# Set the model to use (e.g. "text-davinci-002")
|
9 |
+
model = "text-davinci-002"
|
10 |
+
|
11 |
+
def convert_code(code, from_lang, to_lang):
|
12 |
+
"""
|
13 |
+
Convert the given code from the specified source language to the
|
14 |
+
specified target language using GPT-3.
|
15 |
+
"""
|
16 |
+
# Set the prompt to use as input to the model
|
17 |
+
prompt = f"Convert {from_lang} code to {to_lang} code:\n{code}"
|
18 |
+
|
19 |
+
# Call the GPT-3 API to generate text
|
20 |
+
response = openai.Completion.create(
|
21 |
+
engine=model,
|
22 |
+
prompt=prompt,
|
23 |
+
max_tokens=1024,
|
24 |
+
temperature=0.5,
|
25 |
+
top_p=1,
|
26 |
+
frequency_penalty=0,
|
27 |
+
presence_penalty=0
|
28 |
+
)
|
29 |
+
|
30 |
+
# Return the generated text
|
31 |
+
return response["choices"][0]["text"]
|
32 |
+
|
33 |
+
# Create the Gradio app
|
34 |
+
app = gr.Interface(
|
35 |
+
fn=convert_code,
|
36 |
+
inputs=gr.inputs.Textbox(lines=10, label="Code to convert"),
|