Spaces:
Runtime error
Runtime error
File size: 3,218 Bytes
b43ab03 3dc99b3 b43ab03 3dc99b3 b43ab03 3dc99b3 b43ab03 3dc99b3 |
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 69 70 71 72 73 |
import os
import dotenv
import gradio as gr
import openai
dotenv.load_dotenv()
openai.organization = os.getenv("API_ORG")
openai.api_key = os.getenv("API_KEY")
app_password = os.getenv("APP_PASSWORD")
app_username = os.getenv("APP_USERNAME")
def generate(text, select_radio):
if select_radio.label is "pictogram":
system_prompt = "次の論文のAbstractを次の条件で英語で答えてください。修飾語彙をなるべく除外し、簡素にしてください。10 words 程度で要約してください。全体を満遍なく要約するのではなく、切り捨てる部分があってもよいので主要な部分のみを抽出してください。"
response = openai.ChatCompletion.create(
model="gpt-3.5-turbo-0613",
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": text},
],
frequency_penalty=0.0,
temperature=0.0,
)
response = openai.Image.create(
prompt="Draw an easy-to-read system configuration diagram under the following conditions Use only two colors, black and white. Use arrows and squares. This diagram is a pictogram. Write no alphabets. The following is the system configuration."
+ str(response["choices"][0]["message"]["content"]),
n=1,
size="256x256",
)
# icon
# 後でプロンプトを変更する
else:
system_prompt = "論文のアブストラクトに対し、そこから抽象的なアイコンやイメージを生成してスライドやポスターに使いたいです。生成には DALL・Eを使います。アブストラクトと、DALL・E の画像プロンプトを例として与えるので、最後に入力されるアブストラクトに対する画像プロンプトを考えて、1つ出力してください。プロンプト以外の文字は含まないでください"
response = openai.ChatCompletion.create(
model="gpt-3.5-turbo-0613",
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": text},
],
frequency_penalty=0.0,
temperature=0.0,
)
response = openai.Image.create(
prompt="- A illustration for the slide. A robot washing papers with the buckets.An pictogram for the slide. A large number of documents are piled up. A robot is sorting through them."
+ str(response["choices"][0]["message"]["content"]),
n=1,
size="256x256",
)
return response["data"][0]["url"]
examples = [
["きのこの山"],
["たけのこの里"],
]
demo = gr.Interface(
fn=generate,
inputs=[
gr.components.Textbox(lines=5, label="Prompt"),
gr.Radio(["icon", "pictogram"], label="radio"),
],
outputs=gr.components.Image(type="filepath", label="Generated Image"),
flagging_options=[],
# examples=examples,
)
demo.launch(share=False, auth=(app_username, app_password))
# https://www.gradio.app/docs/radio ラジオボタンの入力要素をリストで取得する
|