AIRider commited on
Commit
ed9b23a
ยท
verified ยท
1 Parent(s): 26c0f5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -13
app.py CHANGED
@@ -73,18 +73,29 @@ def summarize_text(text):
73
  8. ๋Œ€๋ณธ์—์„œ ์ „๋‹ฌํ•˜๋Š” ๊ฐ์ •์ด๋‚˜ ๋ถ„์œ„๊ธฐ๋„ ํฌํ•จ
74
  9. ๋ฐ˜๋“œ์‹œ ๊ธฐ์ˆ ์  ์šฉ์–ด๋‚˜ ์ „๋ฌธ ์šฉ์–ด๊ฐ€ ์žˆ์„ ๊ฒฝ์šฐ, ์ด๋ฅผ ์ •ํ™•ํ•˜๊ฒŒ ์‚ฌ์šฉ
75
  10. ๋Œ€๋ณธ์˜ ๋ชฉ์ ์ด๋‚˜ ์˜๋„๋ฅผ ํŒŒ์•…ํ•˜๊ณ , ์ด๋ฅผ ์š”์•ฝ์— ๋ฐ˜๋“œ์‹œ ๋ฐ˜์˜
 
76
 
77
  ๋Œ€๋ณธ:
78
  {text}
79
  """
80
  return call_api(prompt, max_tokens=2000, temperature=0.3, top_p=0.9)
81
 
82
- def display_script(title, script):
83
- return f"""<h2 style='font-size:24px;'>{title}</h2>
84
- <details>
85
- <summary><h3>์›๋ฌธ ์Šคํฌ๋ฆฝํŠธ (ํด๋ฆญํ•˜์—ฌ ํŽผ์น˜๊ธฐ)</h3></summary>
86
- <div style="white-space: pre-wrap;">{script}</div>
87
- </details>"""
 
 
 
 
 
 
 
 
 
 
88
 
89
  def analyze(url, cache):
90
  try:
@@ -96,29 +107,28 @@ def analyze(url, cache):
96
  title, script = get_youtube_script(url)
97
  cache = {"url": url, "title": title, "script": script}
98
 
99
- script_html = display_script(title, script)
100
- summary_html = summarize_text(script)
101
 
102
  logging.info("๋ถ„์„ ์™„๋ฃŒ")
103
- return script_html, summary_html, cache
104
  except Exception as e:
105
  error_msg = f"์ฒ˜๋ฆฌ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"
106
  logging.exception(error_msg)
107
- return error_msg, "", cache
108
 
109
  # Gradio ์ธํ„ฐํŽ˜์ด์Šค
110
  with gr.Blocks() as demo:
111
  gr.Markdown("## YouTube ์Šคํฌ๋ฆฝํŠธ ์ถ”์ถœ ๋ฐ ์š”์•ฝ ๋„๊ตฌ")
112
  youtube_url_input = gr.Textbox(label="YouTube URL ์ž…๋ ฅ")
113
  analyze_button = gr.Button("๋ถ„์„ํ•˜๊ธฐ")
114
- script_output = gr.HTML(label="์Šคํฌ๋ฆฝํŠธ")
115
- summary_output = gr.HTML(label="์ „์ฒด ์š”์•ฝ")
116
  cached_data = gr.State({"url": "", "title": "", "script": ""})
117
 
118
  analyze_button.click(
119
  analyze,
120
  inputs=[youtube_url_input, cached_data],
121
- outputs=[script_output, summary_output, cached_data]
122
  )
123
 
124
  if __name__ == "__main__":
 
73
  8. ๋Œ€๋ณธ์—์„œ ์ „๋‹ฌํ•˜๋Š” ๊ฐ์ •์ด๋‚˜ ๋ถ„์œ„๊ธฐ๋„ ํฌํ•จ
74
  9. ๋ฐ˜๋“œ์‹œ ๊ธฐ์ˆ ์  ์šฉ์–ด๋‚˜ ์ „๋ฌธ ์šฉ์–ด๊ฐ€ ์žˆ์„ ๊ฒฝ์šฐ, ์ด๋ฅผ ์ •ํ™•ํ•˜๊ฒŒ ์‚ฌ์šฉ
75
  10. ๋Œ€๋ณธ์˜ ๋ชฉ์ ์ด๋‚˜ ์˜๋„๋ฅผ ํŒŒ์•…ํ•˜๊ณ , ์ด๋ฅผ ์š”์•ฝ์— ๋ฐ˜๋“œ์‹œ ๋ฐ˜์˜
76
+ 11. ๊ฐ ๋ฌธ์žฅ์„ ๋ช…ํ™•ํ•˜๊ฒŒ ๊ตฌ๋ถ„ํ•˜๊ณ , ์ ์ ˆํ•œ ๋‹จ๋ฝ ๊ตฌ๋ถ„์„ ์‚ฌ์šฉํ•˜์—ฌ ๊ฐ€๋…์„ฑ์„ ๋†’์ด์‹œ์˜ค
77
 
78
  ๋Œ€๋ณธ:
79
  {text}
80
  """
81
  return call_api(prompt, max_tokens=2000, temperature=0.3, top_p=0.9)
82
 
83
+ def display_content(title, script, summary):
84
+ return f"""
85
+ <h2 style='font-size:24px;'>{title}</h2>
86
+ <div style="display: flex; flex-direction: column; gap: 20px;">
87
+ <div style="flex: 1;">
88
+ <h3>์š”์•ฝ</h3>
89
+ <div style="white-space: pre-wrap; background-color: #f0f0f0; padding: 15px; border-radius: 5px;">{summary}</div>
90
+ </div>
91
+ <div style="flex: 1;">
92
+ <details>
93
+ <summary><h3>์›๋ฌธ ์Šคํฌ๋ฆฝํŠธ (ํด๋ฆญํ•˜์—ฌ ํŽผ์น˜๊ธฐ)</h3></summary>
94
+ <div style="white-space: pre-wrap; background-color: #e0e0e0; padding: 15px; border-radius: 5px;">{script}</div>
95
+ </details>
96
+ </div>
97
+ </div>
98
+ """
99
 
100
  def analyze(url, cache):
101
  try:
 
107
  title, script = get_youtube_script(url)
108
  cache = {"url": url, "title": title, "script": script}
109
 
110
+ summary = summarize_text(script)
111
+ content_html = display_content(title, script, summary)
112
 
113
  logging.info("๋ถ„์„ ์™„๋ฃŒ")
114
+ return content_html, cache
115
  except Exception as e:
116
  error_msg = f"์ฒ˜๋ฆฌ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"
117
  logging.exception(error_msg)
118
+ return error_msg, cache
119
 
120
  # Gradio ์ธํ„ฐํŽ˜์ด์Šค
121
  with gr.Blocks() as demo:
122
  gr.Markdown("## YouTube ์Šคํฌ๋ฆฝํŠธ ์ถ”์ถœ ๋ฐ ์š”์•ฝ ๋„๊ตฌ")
123
  youtube_url_input = gr.Textbox(label="YouTube URL ์ž…๋ ฅ")
124
  analyze_button = gr.Button("๋ถ„์„ํ•˜๊ธฐ")
125
+ content_output = gr.HTML(label="๋‚ด์šฉ")
 
126
  cached_data = gr.State({"url": "", "title": "", "script": ""})
127
 
128
  analyze_button.click(
129
  analyze,
130
  inputs=[youtube_url_input, cached_data],
131
+ outputs=[content_output, cached_data]
132
  )
133
 
134
  if __name__ == "__main__":