Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,13 +2,10 @@ import os
|
|
| 2 |
import gradio as gr
|
| 3 |
from dotenv import load_dotenv
|
| 4 |
from openai import OpenAI
|
| 5 |
-
from fastapi import FastAPI
|
| 6 |
-
import threading
|
| 7 |
-
import uvicorn
|
| 8 |
from prompts.initial_prompt import INITIAL_PROMPT
|
| 9 |
from prompts.main_prompt import MAIN_PROMPT
|
| 10 |
|
| 11 |
-
#
|
| 12 |
if os.path.exists(".env"):
|
| 13 |
load_dotenv(".env")
|
| 14 |
|
|
@@ -16,36 +13,33 @@ OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
|
|
| 16 |
|
| 17 |
client = OpenAI(api_key=OPENAI_API_KEY)
|
| 18 |
|
| 19 |
-
# โ
FastAPI App for Serving Prompts
|
| 20 |
-
fastapi_app = FastAPI()
|
| 21 |
|
| 22 |
-
@fastapi_app.get("/initial_prompt")
|
| 23 |
-
async def get_initial_prompt():
|
| 24 |
-
return {"prompt": INITIAL_PROMPT}
|
| 25 |
|
| 26 |
-
@fastapi_app.get("/main_prompt")
|
| 27 |
-
async def get_main_prompt():
|
| 28 |
-
return {"prompt": MAIN_PROMPT}
|
| 29 |
-
|
| 30 |
-
# โ
Chatbot Function
|
| 31 |
def gpt_call(history, user_message,
|
| 32 |
model="gpt-4o-mini",
|
| 33 |
max_tokens=512,
|
| 34 |
temperature=0.7,
|
| 35 |
top_p=0.95):
|
| 36 |
"""
|
| 37 |
-
OpenAI ChatCompletion API
|
|
|
|
|
|
|
| 38 |
"""
|
|
|
|
| 39 |
messages = [{"role": "system", "content": MAIN_PROMPT}]
|
| 40 |
|
|
|
|
|
|
|
| 41 |
for user_text, assistant_text in history:
|
| 42 |
if user_text:
|
| 43 |
messages.append({"role": "user", "content": user_text})
|
| 44 |
if assistant_text:
|
| 45 |
messages.append({"role": "assistant", "content": assistant_text})
|
| 46 |
|
|
|
|
| 47 |
messages.append({"role": "user", "content": user_message})
|
| 48 |
|
|
|
|
| 49 |
completion = client.chat.completions.create(
|
| 50 |
model=model,
|
| 51 |
messages=messages,
|
|
@@ -55,47 +49,61 @@ def gpt_call(history, user_message,
|
|
| 55 |
)
|
| 56 |
return completion.choices[0].message.content
|
| 57 |
|
| 58 |
-
# โ
Gradio Chatbot UI
|
| 59 |
def respond(user_message, history):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
if not user_message:
|
| 61 |
return "", history
|
| 62 |
|
|
|
|
| 63 |
assistant_reply = gpt_call(history, user_message)
|
|
|
|
|
|
|
| 64 |
history.append((user_message, assistant_reply))
|
| 65 |
|
|
|
|
| 66 |
return "", history
|
| 67 |
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
if __name__ == "__main__":
|
| 100 |
-
|
| 101 |
-
uvicorn.run(fastapi_app, host="0.0.0.0", port=8000)
|
|
|
|
| 2 |
import gradio as gr
|
| 3 |
from dotenv import load_dotenv
|
| 4 |
from openai import OpenAI
|
|
|
|
|
|
|
|
|
|
| 5 |
from prompts.initial_prompt import INITIAL_PROMPT
|
| 6 |
from prompts.main_prompt import MAIN_PROMPT
|
| 7 |
|
| 8 |
+
# .env ํ์ผ์์ OPENAI_API_KEY ๋ก๋
|
| 9 |
if os.path.exists(".env"):
|
| 10 |
load_dotenv(".env")
|
| 11 |
|
|
|
|
| 13 |
|
| 14 |
client = OpenAI(api_key=OPENAI_API_KEY)
|
| 15 |
|
|
|
|
|
|
|
| 16 |
|
|
|
|
|
|
|
|
|
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
def gpt_call(history, user_message,
|
| 19 |
model="gpt-4o-mini",
|
| 20 |
max_tokens=512,
|
| 21 |
temperature=0.7,
|
| 22 |
top_p=0.95):
|
| 23 |
"""
|
| 24 |
+
OpenAI ChatCompletion API๋ฅผ ํตํด ๋ต๋ณ์ ์์ฑํ๋ ํจ์.
|
| 25 |
+
- history: [(user_text, assistant_text), ...]
|
| 26 |
+
- user_message: ์ฌ์ฉ์๊ฐ ๋ฐฉ๊ธ ์
๋ ฅํ ๋ฉ์์ง
|
| 27 |
"""
|
| 28 |
+
# 1) ์์คํ
๋ฉ์์ง(=MAIN_PROMPT)๋ฅผ ๊ฐ์ฅ ์์ ์ถ๊ฐ
|
| 29 |
messages = [{"role": "system", "content": MAIN_PROMPT}]
|
| 30 |
|
| 31 |
+
# 2) ๊ธฐ์กด ๋ํ ๊ธฐ๋ก(history)์ OpenAI ํ์์ผ๋ก ๋ณํ
|
| 32 |
+
# user_text -> 'user' / assistant_text -> 'assistant'
|
| 33 |
for user_text, assistant_text in history:
|
| 34 |
if user_text:
|
| 35 |
messages.append({"role": "user", "content": user_text})
|
| 36 |
if assistant_text:
|
| 37 |
messages.append({"role": "assistant", "content": assistant_text})
|
| 38 |
|
| 39 |
+
# 3) ๋ง์ง๋ง์ ์ด๋ฒ ์ฌ์ฉ์์ ์
๋ ฅ์ ์ถ๊ฐ
|
| 40 |
messages.append({"role": "user", "content": user_message})
|
| 41 |
|
| 42 |
+
# 4) OpenAI API ํธ์ถ
|
| 43 |
completion = client.chat.completions.create(
|
| 44 |
model=model,
|
| 45 |
messages=messages,
|
|
|
|
| 49 |
)
|
| 50 |
return completion.choices[0].message.content
|
| 51 |
|
|
|
|
| 52 |
def respond(user_message, history):
|
| 53 |
+
"""
|
| 54 |
+
Gradio ์์์ submitํ ๋ ํธ์ถ๋๋ ํจ์
|
| 55 |
+
- user_message: ์ฌ์ฉ์๊ฐ ๋ฐฉ๊ธ ์น ๋ฉ์์ง
|
| 56 |
+
- history: ๊ธฐ์กด (user, assistant) ํํ ๋ฆฌ์คํธ
|
| 57 |
+
"""
|
| 58 |
+
# ์ฌ์ฉ์๊ฐ ๋น ๋ฌธ์์ด์ ๋ณด๋๋ค๋ฉด ์๋ฌด ์ผ๋ ํ์ง ์์
|
| 59 |
if not user_message:
|
| 60 |
return "", history
|
| 61 |
|
| 62 |
+
# GPT ๋ชจ๋ธ๋ก๋ถํฐ ์๋ต์ ๋ฐ์
|
| 63 |
assistant_reply = gpt_call(history, user_message)
|
| 64 |
+
|
| 65 |
+
# history์ (user, assistant) ์ ์ถ๊ฐ
|
| 66 |
history.append((user_message, assistant_reply))
|
| 67 |
|
| 68 |
+
# Gradio์์๋ (์๋ก ๋น์์ง ์
๋ ฅ์ฐฝ, ๊ฐฑ์ ๋ history)๋ฅผ ๋ฐํ
|
| 69 |
return "", history
|
| 70 |
|
| 71 |
+
##############################
|
| 72 |
+
# Gradio Blocks UI
|
| 73 |
+
##############################
|
| 74 |
+
with gr.Blocks() as demo:
|
| 75 |
+
gr.Markdown("## Simple Chat Interface")
|
| 76 |
+
|
| 77 |
+
# Chatbot ์ด๊ธฐ ์ํ๋ฅผ ์ค์
|
| 78 |
+
# ์ฒซ ๋ฒ์งธ ๋ฉ์์ง๋ (user="", assistant=INITIAL_PROMPT) ํํ๋ก ๋ฃ์ด
|
| 79 |
+
# ํ๋ฉด์์์ 'assistant'๊ฐ INITIAL_PROMPT๋ฅผ ๋งํ ๊ฒ์ฒ๋ผ ๋ณด์ด๊ฒ ํจ
|
| 80 |
+
chatbot = gr.Chatbot(
|
| 81 |
+
value=[("", INITIAL_PROMPT)], # (user, assistant)
|
| 82 |
+
height=500
|
| 83 |
+
)
|
| 84 |
+
|
| 85 |
+
# (user, assistant) ์์ ์ ์ฅํ ํ์คํ ๋ฆฌ ์ํ
|
| 86 |
+
# ์ฌ๊ธฐ์๋ ๋์ผํ ์ด๊ธฐ ์ํ๋ฅผ ๋ฃ์ด์ค
|
| 87 |
+
state_history = gr.State([("", INITIAL_PROMPT)])
|
| 88 |
+
|
| 89 |
+
# ์ฌ์ฉ์ ์
๋ ฅ
|
| 90 |
+
user_input = gr.Textbox(
|
| 91 |
+
placeholder="Type your message here...",
|
| 92 |
+
label="Your Input"
|
| 93 |
+
)
|
| 94 |
+
|
| 95 |
+
# ์
๋ ฅ์ด submit๋๋ฉด respond() ํธ์ถ โ ์ถ๋ ฅ์ (์ ์
๋ ฅ์ฐฝ, ๊ฐฑ์ ๋ chatbot)
|
| 96 |
+
user_input.submit(
|
| 97 |
+
respond,
|
| 98 |
+
inputs=[user_input, state_history],
|
| 99 |
+
outputs=[user_input, chatbot]
|
| 100 |
+
).then(
|
| 101 |
+
# respond ๋๋ ๋ค, ์ต์ history๋ฅผ state_history์ ๋ฐ์
|
| 102 |
+
fn=lambda _, h: h,
|
| 103 |
+
inputs=[user_input, chatbot],
|
| 104 |
+
outputs=[state_history]
|
| 105 |
+
)
|
| 106 |
+
|
| 107 |
+
# ๋ฉ์ธ ์คํ
|
| 108 |
if __name__ == "__main__":
|
| 109 |
+
demo.launch(server_name="0.0.0.0", server_port=7860, share=True)
|
|
|