Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ import os
|
|
22 |
import gc
|
23 |
from openai import OpenAI
|
24 |
import re
|
25 |
-
|
26 |
# Load system prompts
|
27 |
system_prompt_t2v = """๋น์ ์ ๋น๋์ค ์์ฑ์ ์ํ ํ๋กฌํํธ ์ ๋ฌธ๊ฐ์
๋๋ค.
|
28 |
์ฃผ์ด์ง ํ๋กฌํํธ๋ฅผ ๋ค์ ๊ตฌ์กฐ์ ๋ง๊ฒ ๊ฐ์ ํด์ฃผ์ธ์:
|
@@ -551,42 +551,56 @@ system_prompt_scenario = """๋น์ ์ ์์ ์คํฌ๋ฆฝํธ์ ๋ง๋ ๋ฐฐ๊ฒฝ ์
|
|
551 |
|
552 |
|
553 |
def analyze_scenario(scenario):
|
554 |
-
"""์๋๋ฆฌ์ค๋ฅผ ๋ถ์ํ์ฌ ๋ฐฐ๊ฒฝ ์์์ฉ ํ๋กฌํํธ ์์ฑ"""
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
|
|
|
560 |
{scenario}
|
561 |
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
current_section += "\n" + line
|
584 |
-
if current_section:
|
585 |
-
section_prompts.append(current_section)
|
586 |
|
587 |
-
|
588 |
-
|
589 |
-
|
|
|
|
|
590 |
except Exception as e:
|
591 |
print(f"Error during scenario analysis: {e}")
|
592 |
return ["Error occurred during analysis"] * 5
|
|
|
22 |
import gc
|
23 |
from openai import OpenAI
|
24 |
import re
|
25 |
+
import time
|
26 |
# Load system prompts
|
27 |
system_prompt_t2v = """๋น์ ์ ๋น๋์ค ์์ฑ์ ์ํ ํ๋กฌํํธ ์ ๋ฌธ๊ฐ์
๋๋ค.
|
28 |
์ฃผ์ด์ง ํ๋กฌํํธ๋ฅผ ๋ค์ ๊ตฌ์กฐ์ ๋ง๊ฒ ๊ฐ์ ํด์ฃผ์ธ์:
|
|
|
551 |
|
552 |
|
553 |
def analyze_scenario(scenario):
|
554 |
+
"""์๋๋ฆฌ์ค๋ฅผ ๋ถ์ํ์ฌ ๊ฐ ์น์
๋ณ ๋ฐฐ๊ฒฝ ์์์ฉ ํ๋กฌํํธ ์์ฑ"""
|
555 |
+
try:
|
556 |
+
# ๊ฐ ์น์
๋ณ ํ๋กฌํํธ ์์ฑ์ ์ํ ๋ฉ์์ง ๊ตฌ์ฑ
|
557 |
+
section_prompts = []
|
558 |
+
|
559 |
+
for section_num in range(1, 6):
|
560 |
+
section_descriptions = {
|
561 |
+
1: "๋ฐฐ๊ฒฝ ๋ฐ ํ์์ฑ: ์ฃผ์ ์ ์ ๋ฐ์ ์ธ ๋ถ์๊ธฐ๋ฅผ ํํํ๋ ๋ฐฐ๊ฒฝ ์ฌ",
|
562 |
+
2: "ํฅ๋ฏธ ์ ๋ฐ: ๊ธด์ฅ๊ฐ์ด๋ ๊ฐ๋ฑ์ ์์ํ๋ ๋ถ์๊ธฐ ์๋ ๋ฐฐ๊ฒฝ",
|
563 |
+
3: "ํด๊ฒฐ์ฑ
์ ์: ํฌ๋ง์ ์ด๊ณ ๋ฐ์ ํค์ ๋ฐฐ๊ฒฝ ์ ํ",
|
564 |
+
4: "๋ณธ๋ก : ์์ ๊ฐ ์๊ณ ์ ๋ขฐ๋๋ฅผ ๋์ด๋ ๋ฐฐ๊ฒฝ",
|
565 |
+
5: "๊ฒฐ๋ก : ์ํฉํธ ์๋ ๋ง๋ฌด๋ฆฌ๋ฅผ ์ํ ์ญ๋์ ์ธ ๋ฐฐ๊ฒฝ"
|
566 |
+
}
|
567 |
+
|
568 |
+
messages = [
|
569 |
+
{"role": "system", "content": system_prompt_scenario},
|
570 |
+
{"role": "user", "content": f"""
|
571 |
+
๋ค์ ์คํฌ๋ฆฝํธ์ {section_num}๋ฒ์งธ ์น์
({section_descriptions[section_num]})์ ๋ํ
|
572 |
+
๋ฐฐ๊ฒฝ ์์ ํ๋กฌํํธ๋ฅผ ์์ฑํด์ฃผ์ธ์.
|
573 |
|
574 |
+
์คํฌ๋ฆฝํธ:
|
575 |
{scenario}
|
576 |
|
577 |
+
์ฃผ์์ฌํญ:
|
578 |
+
1. ํด๋น ์น์
์ ํน์ฑ({section_descriptions[section_num]})์ ๋ง๋ ๋ถ์๊ธฐ์ ํค์ ๋ฐ์ํ์ธ์.
|
579 |
+
2. ์ง์ ์ ์ธ ์ ํ/์๋น์ค ๋ฌ์ฌ๋ ํผํ๊ณ , ๊ฐ์ฑ์ ์ด๊ณ ์์ ์ ์ธ ๋ฐฐ๊ฒฝ ์์์ ์ง์คํ์ธ์.
|
580 |
+
3. ๋ค์ ๊ตฌ์กฐ๋ฅผ ๋ฐ๋์ ํฌํจํ์ธ์:
|
581 |
+
- ์ฃผ์ ๋์์ ๋ช
ํํ ํ ๋ฌธ์ฅ์ผ๋ก ์์
|
582 |
+
- ๊ตฌ์ฒด์ ์ธ ๋์๊ณผ ์ ์ค์ฒ๋ฅผ ์๊ฐ ์์๋๋ก ์ค๋ช
|
583 |
+
- ๋ฐฐ๊ฒฝ๊ณผ ํ๊ฒฝ ์ธ๋ถ ์ฌํญ์ ๊ตฌ์ฒด์ ์ผ๋ก ํฌํจ
|
584 |
+
- ์นด๋ฉ๋ผ ๊ฐ๋์ ์์ง์์ ๋ช
์
|
585 |
+
- ์กฐ๋ช
๊ณผ ์์์ ์์ธํ ์ค๋ช
|
586 |
+
- ๋ณํ๋ ๊ฐ์์ค๋ฌ์ด ์ฌ๊ฑด์ ์์ฐ์ค๋ฝ๊ฒ ํฌํจ"""}
|
587 |
+
]
|
588 |
+
|
589 |
+
response = client.chat.completions.create(
|
590 |
+
model="gpt-4-1106-preview",
|
591 |
+
messages=messages,
|
592 |
+
max_tokens=500,
|
593 |
+
temperature=0.7
|
594 |
+
)
|
595 |
+
|
596 |
+
section_prompt = response.choices[0].message.content.strip()
|
597 |
+
section_prompts.append(f"{section_num}. {section_prompt}")
|
|
|
|
|
|
|
598 |
|
599 |
+
# API ์์ฒญ ์ฌ์ด์ ์งง์ ๋๋ ์ด ์ถ๊ฐ
|
600 |
+
time.sleep(1)
|
601 |
+
|
602 |
+
return section_prompts
|
603 |
+
|
604 |
except Exception as e:
|
605 |
print(f"Error during scenario analysis: {e}")
|
606 |
return ["Error occurred during analysis"] * 5
|