AIRider commited on
Commit
7dc2cb4
Β·
verified Β·
1 Parent(s): d3f7e6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -11
app.py CHANGED
@@ -124,17 +124,32 @@ def generate_timeline_summary(sections):
124
  {combined_sections}
125
  """
126
 
127
- response = call_api(prompt, max_tokens=1000, temperature=0.3, top_p=0.9)
128
-
129
- # 응닡을 쀄 λ‹¨μœ„λ‘œ λΆ„λ¦¬ν•˜κ³  각 쀄을 HTML ν˜•μ‹μœΌλ‘œ λ³€ν™˜
130
- timeline_html = "<br>".join(response.split('\n'))
131
-
132
- return f"""
133
- <h3>νƒ€μž„λΌμΈ μš”μ•½:</h3>
134
- <div style="white-space: pre-wrap; max-height: 400px; overflow-y: auto; border: 1px solid #ccc; padding: 10px;">
135
- {timeline_html}
136
- </div>
137
- """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
 
139
  def summarize_text(text):
140
  prompt = f"""
 
124
  {combined_sections}
125
  """
126
 
127
+ try:
128
+ response = call_api(prompt, max_tokens=1000, temperature=0.3, top_p=0.9)
129
+
130
+ # 응닡을 쀄 λ‹¨μœ„λ‘œ λΆ„λ¦¬ν•˜κ³  각 쀄을 HTML ν˜•μ‹μœΌλ‘œ λ³€ν™˜
131
+ timeline_items = response.strip().split('\n')
132
+ formatted_timeline = []
133
+
134
+ for item in timeline_items:
135
+ if ':' in item: # μ‹œκ°„ 정보가 μžˆλŠ” ν•­λͺ©λ§Œ 처리
136
+ time, summary = item.split(':', 1)
137
+ formatted_timeline.append(f"<p><strong>{time.strip()}</strong>:{summary.strip()}</p>")
138
+
139
+ timeline_html = "\n".join(formatted_timeline)
140
+
141
+ if not timeline_html:
142
+ raise ValueError("μœ νš¨ν•œ νƒ€μž„λΌμΈ μš”μ•½μ„ μƒμ„±ν•˜μ§€ λͺ»ν–ˆμŠ΅λ‹ˆλ‹€.")
143
+
144
+ return f"""
145
+ <h3>νƒ€μž„λΌμΈ μš”μ•½:</h3>
146
+ <div style="white-space: pre-wrap; max-height: 400px; overflow-y: auto; border: 1px solid #ccc; padding: 10px;">
147
+ {timeline_html}
148
+ </div>
149
+ """
150
+ except Exception as e:
151
+ logging.exception("νƒ€μž„λΌμΈ μš”μ•½ 생성 쀑 였λ₯˜ λ°œμƒ")
152
+ return "<p>νƒ€μž„λΌμΈ μš”μ•½μ„ μƒμ„±ν•˜λŠ” 쀑 였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€. λ‹€μ‹œ μ‹œλ„ν•΄ μ£Όμ„Έμš”.</p>"
153
 
154
  def summarize_text(text):
155
  prompt = f"""