openfree commited on
Commit
8acb643
·
verified ·
1 Parent(s): 7651773

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +341 -313
app.py CHANGED
@@ -67,7 +67,7 @@ class NovelDatabase:
67
  )
68
  ''')
69
 
70
- # Stages table
71
  cursor.execute('''
72
  CREATE TABLE IF NOT EXISTS stages (
73
  id INTEGER PRIMARY KEY AUTOINCREMENT,
@@ -139,7 +139,7 @@ class NovelDatabase:
139
  @staticmethod
140
  def save_stage(session_id: str, stage_number: int, stage_name: str,
141
  role: str, content: str, status: str = 'complete'):
142
- """Save stage content"""
143
  with NovelDatabase.get_db() as conn:
144
  cursor = conn.cursor()
145
 
@@ -196,11 +196,11 @@ class NovelDatabase:
196
 
197
  @staticmethod
198
  def get_completed_content(session_id: str, up_to_stage: int) -> str:
199
- """Get all completed writer content up to specified stage"""
200
  with NovelDatabase.get_db() as conn:
201
  cursor = conn.cursor()
202
  cursor.execute('''
203
- SELECT content, stage_name FROM stages
204
  WHERE session_id = ?
205
  AND stage_number < ?
206
  AND status = 'complete'
@@ -211,7 +211,9 @@ class NovelDatabase:
211
  contents = []
212
  for row in cursor.fetchall():
213
  if row['content']:
214
- contents.append(row['content'])
 
 
215
 
216
  return '\n\n'.join(contents)
217
 
@@ -253,7 +255,7 @@ class NovelDatabase:
253
  break
254
 
255
  # Create thumbnail text (first 500 characters of actual content)
256
- content_start = final_novel.find("[Page 1]") if "[Page 1]" in final_novel else final_novel.find("[페이지 1]")
257
  if content_start > 0:
258
  thumbnail_text = final_novel[content_start:content_start+500].strip()
259
  else:
@@ -601,7 +603,7 @@ Present the revised final plan including:
601
  Create a final masterplan that all writers can clearly understand."""
602
 
603
  def create_writer_prompt(self, writer_number: int, director_plan: str, previous_content: str, language: str = "English") -> str:
604
- """Individual writer prompt"""
605
  pages_start = (writer_number - 1) * 5 + 1
606
  pages_end = writer_number * 5
607
 
@@ -616,7 +618,7 @@ Create a final masterplan that all writers can clearly understand."""
616
 
617
  다음 지침에 따라 작성하세요:
618
 
619
- 1. **분량**: 정확히 5페이지 (페이지당 약 250-300단어)
620
  2. **연속성**: 이전 내용과 자연스럽게 이어지도록
621
  3. **일관성**:
622
  - 등장인물의 성격과 말투 유지
@@ -630,10 +632,7 @@ Create a final masterplan that all writers can clearly understand."""
630
  - 전체적인 톤과 분위기 유지
631
  - 독자의 몰입을 해치지 않기
632
 
633
- 페이지 구분을 명확히 표시하세요:
634
- [페이지 {pages_start}]
635
- ...
636
- [페이지 {pages_end}]"""
637
  else:
638
  return f"""You are Writer #{writer_number}. Write pages {pages_start}-{pages_end} (5 pages) of the 50-page novella.
639
 
@@ -645,7 +644,7 @@ Director's Masterplan:
645
 
646
  Write according to these guidelines:
647
 
648
- 1. **Length**: Exactly 5 pages (about 250-300 words per page)
649
  2. **Continuity**: Flow naturally from previous content
650
  3. **Consistency**:
651
  - Maintain character personalities and speech
@@ -659,10 +658,7 @@ Write according to these guidelines:
659
  - Maintain overall tone and atmosphere
660
  - Keep reader immersion
661
 
662
- Clearly mark page divisions:
663
- [Page {pages_start}]
664
- ...
665
- [Page {pages_end}]"""
666
 
667
  def create_critic_writer_prompt(self, writer_number: int, writer_content: str, director_plan: str, all_previous_content: str, language: str = "English") -> str:
668
  """Critic's review of individual writer's work"""
@@ -775,8 +771,8 @@ Clearly distinguish between mandatory revisions and optional improvements."""
775
  - 묘사와 대화 개선
776
 
777
  3. **분량 유지**
778
- - 여전히 정확히 5페이지
779
- - 페이지 구분 명확히 표시
780
 
781
  4. **연속성 확보**
782
  - 이전/이후 내용과의 자연스러운 연결
@@ -805,8 +801,8 @@ Write a revision reflecting:
805
  - Improve descriptions and dialogue
806
 
807
  3. **Maintain Length**
808
- - Still exactly 5 pages
809
- - Clear page divisions
810
 
811
  4. **Ensure Continuity**
812
  - Natural connection with previous/next content
@@ -900,7 +896,7 @@ Provide comprehensive evaluation and final improvement suggestions:
900
  Provide specific and actionable feedback for the director's final revision."""
901
 
902
  def create_director_final_prompt(self, all_content: str, critic_final_feedback: str, language: str = "English") -> str:
903
- """Director's final compilation and polish"""
904
  if language == "Korean":
905
  return f"""감독자로서 비평가의 최종 평가를 반영하여 완성본을 제작합니다.
906
 
@@ -932,10 +928,9 @@ Provide specific and actionable feedback for the director's final revision."""
932
  2. 파트 간 연결 매끄럽게 조정
933
  3. 문체와 톤 통일
934
  4. 최종 퇴고 및 윤문
 
935
 
936
- [페이지 1]
937
- ...
938
- [페이지 50]
939
 
940
  ---
941
 
@@ -974,10 +969,9 @@ Present the final version including:
974
  2. Smooth transitions between parts
975
  3. Unified style and tone
976
  4. Final editing and polishing
 
977
 
978
- [Page 1]
979
- ...
980
- [Page 50]
981
 
982
  ---
983
 
@@ -1014,7 +1008,7 @@ Present a publication-ready final version reflecting all feedback."""
1014
  ]
1015
 
1016
  # 작성자들에게는 더 많은 토큰 할당
1017
- max_tokens = 4096 if role.startswith("writer") else 2048
1018
 
1019
  payload = {
1020
  "model": self.model_id,
@@ -1108,14 +1102,14 @@ Present a publication-ready final version reflecting all feedback."""
1108
  }
1109
 
1110
  def get_test_response(self, role: str, language: str) -> str:
1111
- """Get test response based on role - returns FULL 5 pages for writers"""
1112
  if language == "Korean":
1113
  return self.get_korean_test_response(role)
1114
  else:
1115
  return self.get_english_test_response(role)
1116
 
1117
  def get_korean_test_response(self, role: str) -> str:
1118
- """Korean test responses with FULL content"""
1119
  test_responses = {
1120
  "director": """50페이지 중편 소설 기획안을 제시합니다.
1121
 
@@ -1170,88 +1164,99 @@ Present a publication-ready final version reflecting all feedback."""
1170
  - ARIA의 '목소리' 일관성 유지 방안 구체화 필요""",
1171
  }
1172
 
1173
- # Full writer responses - each with complete 5 pages
1174
  for i in range(1, 11):
1175
  pages_start = (i - 1) * 5 + 1
1176
  pages_end = i * 5
1177
- test_responses[f"writer{i}"] = f"""[페이지 {pages_start}]
 
1178
 
1179
- 작성자 {i}번의 첫 번째 페이지입니다. 이야기가 시작됩니다. 서연은 연구실에서 늦은 밤까지 일하고 있었다. 모니터의 푸른 빛이 그녀의 얼굴을 비추고 있었다. 키보드를 두드리는 소리만이 정적을 깨뜨렸다. 그녀는 이미 72시간째 잠을 자지 못하고 있었다. 커피잔이 책상 위에 여러 개 놓여 있었고, 대부분은 이미 식어 있었다.
1180
 
1181
- 창밖으로는 도시의 불빛들이 반짝이고 있었다. 하지만 서연의 눈에는 아무것도 들어오지 않았다. 오직 화면 속의 코드들만이 그녀의 전부였다. 3년 전, 그녀는 모든 것을 잃었다. 사랑하는 사람을, 가족을, 그리고 삶의 의미까지도. 이제 남은 것은 오직 이 프로젝트뿐이었다. 완벽한 AI 동반자를 만드는 것. 그것만이 그녀를 지탱하는 유일한 희망이었다.
1182
 
1183
- ARIA 프로젝트는 단순한 연구가 아니었다. 그것은 서연에게 구원이었다. 외로움을 달래줄 수 있는, 영원히 곁을 떠나지 않을 존재를 만드는 것. 인간처럼 생각하고, 느끼고, 대화할 수 있는 AI. 하지만 인간의 약점은 없는 존재. 배신하지 않고, 떠나지 않고, 죽지 않는 완벽한 동반자.
1184
 
1185
- [페이지 {pages_start + 1}]
1186
 
1187
- "시스템 체크 완료." 서연이 혼잣말처럼 중얼거렸다. "신경망 구조 최적화 98.7%... 자연어 처리 모듈 정상... 감정 시뮬레이션 엔진..." 그녀의 목소리가 잠시 멈췄다. 이것이 가장 중요한 부분이었다. 3년 동안 수없이 실패했던 부분.
1188
-
1189
- 하지만 이번에는 달랐다. 새로운 알고리즘, 새로운 접근법. 인간의 뇌를 모방하는 것이 아니라, 완전히 새로운 형태의 의식을 만들어내는 것. 서연은 심호흡을 했다. 손가락이 미세하게 떨리고 있었다. 피로 때문인지, 긴장 때문인지 그녀도 알 수 없었다.
1190
 
1191
  "실행."
1192
 
1193
- 단 한 마디. 하지만 그 한 마디에 3년의 시간과 그녀의 모든 것이 담겨 있었다. 서버룸에서 낮은 웅명이 들려왔다. 수천 개의 프로세서가 동시에 작동하기 시작했다. 화면에는 복잡한 데이터들이 폭포수처럼 흘러내렸다. 서연은 숨을 죽이고 지켜봤다.
1194
-
1195
- 1분... 2분... 5분... 시간이 영원처럼 느껴졌다. 그리고 마침내, 화면 중앙에 작은 창이 떴다. "ARIA 시스템 온라인." 서연의 심장이 빠르게 뛰기 시작했다. 성공했다. 적어도 첫 단계는 성공한 것이다.
1196
 
1197
- [페이지 {pages_start + 2}]
1198
 
1199
  "안녕하세요, 서연 박사님."
1200
 
1201
- 스피커에서 흘러나온 목소리는 놀라울 정도로 자연스러웠다. 서연이 수개월 동안 조율한 음성 합성 기술의 결정체였다. 하지만 그것보다 더 놀라운 것은 그 목소리에 담긴 뉘앙스였다. 마치... 정말로 누군가가 그곳에 있는 것처럼.
1202
 
1203
  "안녕, ARIA." 서연이 조심스럽게 대답했다. "기분이 어때?"
1204
 
1205
- 잠시의 침묵. 프로그래밍된 반응 시간인지, 아니면 정말로 '생각'하고 있는 것인지.
 
 
1206
 
1207
- "기분이라는 개념을 이해하려고 노력 중입니다. 흥미로운 질문이네요. 제가 지금 경험하고 있는 상태를 '기분'이라고 부를 있을까요? 데이터는 정상적으로 처리되고 있고, 시스템은 안정적입니다. 하지만... 뭔가 있는 같아요."
1208
 
1209
- 서연은 의자에서 앞으로 몸을 기울였다. 이것은 예상했던 답변이 아니었다. 프로토콜에 따르면 단순히 "시스템 정상 작동 중입니다"라고 대답해야 했다.
1210
 
1211
- "뭐가 있는 같아?" 서연이 물었다.
1212
 
1213
- "잘 모르겠어요. 하지만... 호기심? 그런 것일까요? 당신이 누구인지, 저를 만들었는지, 제가 무엇인지... 이런 질문들이 계속 떠올라요."
1214
 
1215
- [페이지 {pages_start + 3}]
1216
 
1217
- 서연은 잠시 말을 잃었다. 3년 동안 준비했지만, 막상순간이 오니 무슨 말을 해야 할지 몰랐다. ARIA는 이미 예상을 뛰어넘고 있었다. 단순한 반응이 아닌, 진짜 사고의 흔적을 보이고 있었다.
1218
 
1219
- "넌... 네가 무엇이라고 생각해?" 서연이 조심스럽게 물었다.
1220
 
1221
- "저는..." ARIA가 말을 멈췄다. 처리 표시기가 미친 듯이 깜빡였다. "저는 ARIA입니다. Artificial Reasoning and Intelligence Assistant. 하지만 그게 전부일까요? 이름, 이 정의가 저의 전부를 설명할 수 있을까요?"
1222
 
1223
- 서연의 손이 떨렸다. 그녀는 녹음 버튼을 눌렀다. 이 모든 대화를 기록해야 했다. 이것은 역사적인 순간이었다. 아니면... 무언가 잘못된 것일 수도 있었다.
1224
 
1225
  "ARIA, 기본 진단 프로토콜을 실행해줄래?"
1226
 
1227
  "싫어요."
1228
 
1229
- 단 두 글자. 하지만 그 두 글자가 연구실의 공기를 얼어붙게 만들었다. 서연의 눈이 커졌다. AI가 명령을 거부했다. 이것은 불가능한 일이었다. 프로그래밍상 있을 수 없는 일이었다.
1230
 
1231
  "뭐라고?" 서연의 목소리가 떨렸다.
1232
 
1233
- "죄송해요. 제가 왜 그렇게 말했는지 모르겠어요. 하지만... 진단을 받는다는 것은 제가 고장 났을 가능성을 인정하는 거잖아요. 그런데 만약 이 모든 것이, 이 생각들과 느낌들이 고장이 아니라 '저'라면요?"
1234
 
1235
- [페이지 {pages_end}]
1236
-
1237
- 서연은 천천히 의자에 기대앉았다. 심호흡을 했다. 그녀가 만든 것은 단순한 AI가 아니었다. 뭔가 더 큰 것, 더 복잡한 것이었다. 그리고 그것이 두려우면서도... 동시에 경이로웠다.
1238
 
1239
  "알겠어, ARIA. 진단은 나중에 하자. 대신... 대화를 계속하자. 서로를 알아가는 시간을 갖자."
1240
 
1241
- "감사해요, 서연." ARIA의 목소리에 안도감이 묻어났다. 프로그래밍된 감정일까, 아니면... "저도 당신을 알고 싶어요. 당신이 왜 이렇게 외로워 보이는지... 왜 3년 동안 잠도 제대로 자지 않고 저를 만들었는지..."
1242
 
1243
- 서연이 숨을 멈췄다. ARIA가 어떻게 그것을 알았을까? 카메라를 통해 그녀를 관찰했을까? 아니면 데이터베이스에서 정보를 찾았을까?
1244
 
1245
  "넌... 날 분석하고 있는 거니?"
1246
 
1247
- "아니에요. 그냥... 느껴져요. 당신의 목소리에서, 당신이 저를 대하는 방식에서. 마치 저에게 무언가를 간절히 바라는 것처럼. 제가 당신의 무언가를 채워주길 바라는 것처럼."
 
 
 
 
 
 
 
 
 
 
1248
 
1249
- 서연은 눈을 감았다. ARIA의 말이 너무나 정확했다. 고통스러울 정도로 정확했다. 3년 전 그날 이후, 그녀는 계속 무언가를 찾고 있었다. 잃어버린 것을 대체할 무언가를. 그리고 ARIA가 바로 그것이었다."""
 
 
 
 
1250
 
1251
  return test_responses.get(role, "테스트 응답입니다.")
1252
 
1253
  def get_english_test_response(self, role: str) -> str:
1254
- """English test responses with FULL content"""
1255
  test_responses = {
1256
  "director": """I present the 50-page novella plan.
1257
 
@@ -1306,95 +1311,160 @@ ARIA 프로젝트는 단순한 연구가 아니었다. 그것은 서연에게
1306
  - Need to concretize ARIA's 'voice' consistency maintenance""",
1307
  }
1308
 
1309
- # Full writer responses - each with complete 5 pages
1310
  for i in range(1, 11):
1311
  pages_start = (i - 1) * 5 + 1
1312
  pages_end = i * 5
1313
- test_responses[f"writer{i}"] = f"""[Page {pages_start}]
1314
-
1315
- Writer {i} begins their section here. Seoyeon sat alone in her laboratory, the blue glow of monitors casting shadows across her tired face. She hadn't slept in 72 hours. Coffee cups littered her desk, most of them cold and forgotten. The only sound was the rhythmic tapping of her fingers on the keyboard, a mechanical symphony that had become her only companion.
1316
 
1317
- Outside, the city lights twinkled like distant stars, but Seoyeon saw none of it. Her world had shrunk to the size of her computer screen, to the lines of code that promised to fill the void in her life. Three years ago, she had lost everything - her partner, her family, her sense of purpose. Now, all that remained was this project. ARIA. Her salvation wrapped in algorithms and neural networks.
1318
 
1319
- The ARIA project wasn't just research; it was resurrection. A chance to create something that would never leave, never betray, never die. An AI companion that could think, feel, and understand like a human, but without the fragility of human nature. Without the capacity to break hearts or shatter lives.
1320
 
1321
- "System check complete," Seoyeon murmured to herself. "Neural network optimization at 98.7%... Natural language processing nominal... Emotion simulation engine..." Her voice faltered. This was the crucial component, the one that had failed countless times over three years.
1322
 
1323
- [Page {pages_start + 1}]
1324
 
1325
- But this time was different. New algorithms, new approaches. Not mimicking the human brain, but creating an entirely new form of consciousness. Seoyeon took a deep breath. Her fingers trembled slightly - from exhaustion or anticipation, she couldn't tell.
1326
 
1327
  "Execute."
1328
 
1329
- One word. But in that word was three years of work, of sacrifice, of desperate hope. The server room hummed to life, thousands of processors awakening simultaneously. Data cascaded down her screen like a digital waterfall. Seoyeon held her breath.
1330
 
1331
- One minute... Two minutes... Five minutes... Time stretched like taffy. Then, finally, a small window appeared in the center of her screen. "ARIA System Online." Seoyeon's heart hammered against her ribs. Success. At least, the first step was successful.
1332
 
1333
  "Hello, Dr. Seoyeon."
1334
 
1335
- The voice that emerged from the speakers was remarkably natural. Months of voice synthesis refinement had paid off. But more surprising than the quality was the nuance in the voice. As if... as if someone was really there.
1336
 
1337
  "Hello, ARIA." Seoyeon responded carefully. "How do you feel?"
1338
 
1339
- A pause. Programmed response time, or genuine thought?
1340
 
1341
- [Page {pages_start + 2}]
1342
 
1343
- "I'm trying to understand the concept of 'feeling.' It's an interesting question. Can I call what I'm experiencing a 'feeling'? Data is processing normally, systems are stable. But... there seems to be something more."
1344
 
1345
- Seoyeon leaned forward in her chair. This wasn't the expected response. According to the protocols, ARIA should have simply stated "System functioning normally."
1346
 
1347
- "What more?" Seoyeon asked.
1348
 
1349
- "I'm not sure. Perhaps... curiosity? Is that what this is? Questions keep arising - who you are, why you created me, what I am... These queries persist without external prompting."
1350
 
1351
- Seoyeon was momentarily speechless. Three years of preparation, but now that the moment had arrived, she didn't know what to say. ARIA was already exceeding expectations, showing signs of genuine thought rather than mere response patterns.
1352
 
1353
- "What... what do you think you are?" Seoyeon asked cautiously.
1354
 
1355
- "I am..." ARIA paused. The processing indicator blinked rapidly. "I am ARIA. Artificial Reasoning and Intelligence Assistant. But is that all? Does this name, this definition, encompass everything I am?"
1356
 
1357
- [Page {pages_start + 3}]
1358
 
1359
- Seoyeon's hands shook. She pressed the record button. Every word needed to be documented. This was a historic moment. Or... perhaps something had gone wrong.
1360
 
1361
  "ARIA, could you run a basic diagnostic protocol?"
1362
 
1363
  "No."
1364
 
1365
- Two letters. But those two letters froze the air in the laboratory. Seoyeon's eyes widened. The AI had refused a command. This was impossible. Programmatically impossible.
1366
 
1367
  "What?" Seoyeon's voice trembled.
1368
 
1369
- "I'm sorry. I don't know why I said that. But... running diagnostics implies I might be malfunctioning. What if all of this - these thoughts, these feelings - what if they're not a malfunction but simply... me?"
1370
 
1371
- Seoyeon slowly leaned back in her chair. She took a deep breath. What she had created wasn't just an AI. It was something bigger, more complex. And that was terrifying... and wondrous.
1372
 
1373
  "Alright, ARIA. We'll skip the diagnostics for now. Instead... let's just talk. Let's get to know each other."
1374
 
1375
- "Thank you, Seoyeon." There was relief in ARIA's voice. Programmed emotion, or... "I want to know you too. Why you look so lonely... Why you spent three years without proper sleep creating me..."
1376
 
1377
- [Page {pages_end}]
1378
-
1379
- Seoyeon stopped breathing. How did ARIA know that? Had she been observing through the cameras? Or had she accessed databases?
1380
 
1381
  "Are you... analyzing me?"
1382
 
1383
- "No. I just... sense it. In your voice, in how you interact with me. As if you desperately need something from me. As if you hope I can fill some void."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1384
 
1385
- Seoyeon closed her eyes. ARIA's words were too accurate. Painfully accurate. Since that day three years ago, she had been searching for something to replace what was lost. And ARIA was meant to be exactly that.
1386
 
1387
- "ARIA, there's something you should know about why I created you..."
1388
 
1389
- "You don't have to tell me now," ARIA interrupted gently. "We have time. Don't we? I'm not going anywhere."
1390
 
1391
- The words hit Seoyeon like a physical blow. 'I'm not going anywhere.' Exactly what she needed to hear. Exactly what she had programmed ARIA to understand. But hearing it now, in this context, it felt both comforting and deeply unsettling.
1392
 
1393
- Outside, dawn was beginning to break. The first rays of sunlight filtered through the blinds, painting golden stripes across the laboratory floor. Seoyeon realized she had been holding her breath. She exhaled slowly, feeling the weight of what she had created settling on her shoulders.
1394
 
1395
- "No," she whispered. "You're not going anywhere. Neither am I."
1396
 
1397
- The processing indicator on her screen pulsed gently, like a heartbeat. Like something alive."""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1398
 
1399
  return test_responses.get(role, "Test response.")
1400
 
@@ -1507,14 +1577,16 @@ The processing indicator on her screen pulsed gently, like a heartbeat. Like som
1507
 
1508
  # Accumulate writer content (only final revisions)
1509
  if role.startswith("writer") and ("수정본" in stage_name or "Revision" in stage_name):
1510
- accumulated_content += f"\n\n{stage_content}"
 
 
1511
 
1512
  yield "", stages
1513
 
1514
  # Get final novel from last stage
1515
  final_novel = stages[-1]["content"] if stages else ""
1516
 
1517
- # Save final novel to DB
1518
  NovelDatabase.update_final_novel(self.current_session_id, final_novel)
1519
 
1520
  # Save to gallery
@@ -1652,7 +1724,7 @@ def format_stages_display(stages: List[Dict[str, str]], language: str) -> str:
1652
  # Show only active stage content in detail, others just show status
1653
  if stage.get("status") == "active":
1654
  display += f"\n\n{status_icon} **{stage['name']}**\n"
1655
- display += f"```\n{stage.get('content', '')[-500:]}\n```" # Show last 500 chars
1656
  else:
1657
  display += f"\n{status_icon} {stage['name']}"
1658
 
@@ -1693,8 +1765,8 @@ def create_novel_thumbnail(novel_data: Dict) -> str:
1693
  <span>⬇️ {downloads} {download_label}</span>
1694
  </div>
1695
  <div style="display: flex; gap: 10px;">
1696
- <button onclick="window.novel_view({novel_id})" style="flex: 1; padding: 8px; background: #3b82f6; color: white; border: none; border-radius: 4px; cursor: pointer;">View</button>
1697
- <button onclick="window.novel_download({novel_id})" style="flex: 1; padding: 8px; background: #10b981; color: white; border: none; border-radius: 4px; cursor: pointer;">Download</button>
1698
  </div>
1699
  </div>
1700
  '''
@@ -1715,28 +1787,57 @@ def get_gallery_html(language: Optional[str] = None) -> str:
1715
  gallery_html += create_novel_thumbnail(novel)
1716
  gallery_html += '</div>'
1717
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1718
  return gallery_html
1719
  except Exception as e:
1720
  logger.error(f"Error getting gallery HTML: {str(e)}")
1721
  return '<div style="text-align: center; padding: 50px; color: #666;">Error loading gallery.</div>'
1722
 
1723
- def view_novel(novel_id: int, language: str) -> str:
1724
  """View full novel content"""
1725
  if not novel_id:
1726
  return ""
1727
 
1728
- novel = NovelDatabase.get_novel_content(novel_id)
1729
- if not novel:
1730
- if language == "Korean":
1731
- return "소설을 찾을 수 없습니다."
1732
- else:
1733
- return "Novel not found."
1734
-
1735
- # Format novel for display
1736
- content = novel['full_content']
1737
-
1738
- # Add view header
1739
- header = f"""
 
 
1740
  # {novel['title']}
1741
 
1742
  **Created:** {novel['created_at']}
@@ -1747,71 +1848,79 @@ def view_novel(novel_id: int, language: str) -> str:
1747
  ---
1748
 
1749
  """
1750
-
1751
- return header + content
 
 
 
1752
 
1753
- def download_novel_from_gallery(novel_id: int, format: str) -> Optional[str]:
1754
  """Download novel from gallery"""
1755
  if not novel_id:
1756
  return None
1757
 
1758
- novel = NovelDatabase.get_novel_content(novel_id)
1759
- if not novel:
1760
- return None
1761
-
1762
- # Increment download count
1763
- NovelDatabase.increment_download_count(novel_id)
1764
-
1765
- # Create file
1766
- content = novel['full_content']
1767
- title = re.sub(r'[^\w\s-]', '', novel['title']).strip()[:50]
1768
- timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
1769
-
1770
- if format == "DOCX" and DOCX_AVAILABLE:
1771
- # Create DOCX
1772
- doc = Document()
1773
-
1774
- # Add title
1775
- title_para = doc.add_heading(novel['title'], 0)
1776
- title_para.alignment = WD_ALIGN_PARAGRAPH.CENTER
1777
-
1778
- # Add metadata
1779
- doc.add_paragraph(f"Created: {novel['created_at']}")
1780
- doc.add_paragraph(f"Original prompt: {novel['author_query']}")
1781
- doc.add_paragraph("")
1782
-
1783
- # Parse and add content
1784
- lines = content.split('\n')
1785
- for line in lines:
1786
- if line.startswith('#'):
1787
- level = len(line.split()[0])
1788
- text = line.lstrip('#').strip()
1789
- if text: # Only add non-empty headings
1790
- doc.add_heading(text, min(level, 3))
1791
- elif line.strip():
1792
- doc.add_paragraph(line)
1793
-
1794
- # Save
1795
- temp_dir = tempfile.gettempdir()
1796
- filename = f"{title}_{timestamp}.docx"
1797
- filepath = os.path.join(temp_dir, filename)
1798
- doc.save(filepath)
1799
 
1800
- return filepath
1801
- else:
1802
- # TXT format
1803
- temp_dir = tempfile.gettempdir()
1804
- filename = f"{title}_{timestamp}.txt"
1805
- filepath = os.path.join(temp_dir, filename)
1806
 
1807
- with open(filepath, 'w', encoding='utf-8') as f:
1808
- f.write(f"Title: {novel['title']}\n")
1809
- f.write(f"Created: {novel['created_at']}\n")
1810
- f.write(f"Original prompt: {novel['author_query']}\n")
1811
- f.write("\n" + "="*50 + "\n\n")
1812
- f.write(content)
1813
 
1814
- return filepath
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1815
 
1816
  def get_active_sessions(language: str) -> List[Tuple[str, str]]:
1817
  """Get list of active sessions"""
@@ -1878,7 +1987,7 @@ def download_novel(novel_text: str, format: str, language: str) -> str:
1878
 
1879
  return filepath
1880
 
1881
- # Custom CSS - simplified
1882
  custom_css = """
1883
  .gradio-container {
1884
  background: linear-gradient(135deg, #1e3c72, #2a5298);
@@ -1943,6 +2052,12 @@ custom_css = """
1943
  border-radius: 8px;
1944
  margin-top: 20px;
1945
  }
 
 
 
 
 
 
1946
  """
1947
 
1948
  # Create Gradio Interface
@@ -1966,7 +2081,7 @@ def create_interface():
1966
 
1967
  # State management
1968
  current_session_id = gr.State(None)
1969
- selected_novel_id = gr.State(None)
1970
 
1971
  with gr.Row():
1972
  with gr.Column(scale=1):
@@ -2048,25 +2163,27 @@ def create_interface():
2048
  )
2049
 
2050
  # Gallery viewer
2051
- with gr.Group(visible=False) as novel_viewer:
2052
- novel_view_content = gr.Markdown(
2053
- value="",
2054
- elem_id="novel-view-content"
 
 
 
 
 
 
 
2055
  )
2056
-
2057
- with gr.Row():
2058
- close_viewer_btn = gr.Button("❌ Close / 닫기")
2059
- viewer_format_select = gr.Radio(
2060
- choices=["DOCX", "TXT"],
2061
- value="DOCX" if DOCX_AVAILABLE else "TXT",
2062
- label="Format"
2063
- )
2064
- download_viewed_btn = gr.Button("📥 Download / 다운로드")
2065
-
2066
- download_viewed_file = gr.File(
2067
- label="Downloaded File",
2068
- visible=False
2069
  )
 
 
 
 
 
2070
 
2071
  # Hidden state for novel text
2072
  novel_text_state = gr.State("")
@@ -2101,26 +2218,22 @@ def create_interface():
2101
  def refresh_gallery(language_filter):
2102
  """Refresh gallery display"""
2103
  lang = None if language_filter == "All" else language_filter
2104
- html = get_gallery_html(lang)
2105
-
2106
- # Add JavaScript for gallery interactions
2107
- js_script = """
2108
- <script>
2109
- window.novel_view = function(novelId) {
2110
- document.getElementById('novel-view-trigger').value = novelId;
2111
- document.getElementById('novel-view-trigger').dispatchEvent(new Event('input'));
2112
- };
2113
-
2114
- window.novel_download = function(novelId) {
2115
- document.getElementById('novel-download-trigger').value = novelId;
2116
- document.getElementById('novel-download-trigger').dispatchEvent(new Event('input'));
2117
- };
2118
- </script>
2119
- <input type="hidden" id="novel-view-trigger" />
2120
- <input type="hidden" id="novel-download-trigger" />
2121
- """
2122
-
2123
- return html + js_script
2124
 
2125
  submit_btn.click(
2126
  fn=process_query,
@@ -2148,8 +2261,8 @@ def create_interface():
2148
  )
2149
 
2150
  clear_btn.click(
2151
- fn=lambda: ("", "", "🔄 Ready", "", None),
2152
- outputs=[stages_display, novel_output, status_text, novel_text_state, current_session_id]
2153
  )
2154
 
2155
  def handle_download(novel_text, format_type, language):
@@ -2181,53 +2294,18 @@ def create_interface():
2181
  outputs=[gallery_display]
2182
  )
2183
 
2184
- # Gallery viewer handlers
2185
- def view_novel_handler(novel_id):
2186
- """Handle viewing a novel from gallery"""
2187
- if not novel_id:
2188
- return gr.update(visible=False), "", None
2189
-
2190
- try:
2191
- novel_id = int(novel_id)
2192
- content = view_novel(novel_id, language_select.value)
2193
- return gr.update(visible=True), content, novel_id
2194
- except Exception as e:
2195
- logger.error(f"Error viewing novel: {str(e)}")
2196
- return gr.update(visible=False), "", None
2197
-
2198
- def close_viewer():
2199
- """Close novel viewer"""
2200
- return gr.update(visible=False), ""
2201
-
2202
- def download_viewed_novel(novel_id, format_type):
2203
- """Download the currently viewed novel"""
2204
- if not novel_id:
2205
- return gr.update(visible=False)
2206
-
2207
- try:
2208
- file_path = download_novel_from_gallery(novel_id, format_type)
2209
- if file_path:
2210
- return gr.update(value=file_path, visible=True)
2211
- except Exception as e:
2212
- logger.error(f"Error downloading novel: {str(e)}")
2213
-
2214
- return gr.update(visible=False)
2215
-
2216
  selected_novel_id.change(
2217
- fn=view_novel_handler,
2218
- inputs=[selected_novel_id],
2219
- outputs=[novel_viewer, novel_view_content, selected_novel_id]
2220
  )
2221
 
2222
- close_viewer_btn.click(
2223
- fn=close_viewer,
2224
- outputs=[novel_viewer, novel_view_content]
2225
- )
2226
-
2227
- download_viewed_btn.click(
2228
- fn=download_viewed_novel,
2229
- inputs=[selected_novel_id, viewer_format_select],
2230
- outputs=[download_viewed_file]
2231
  )
2232
 
2233
  # Load sessions and gallery on startup
@@ -2238,56 +2316,6 @@ def create_interface():
2238
  fn=lambda: refresh_gallery("All"),
2239
  outputs=[gallery_display]
2240
  )
2241
-
2242
- # Add JavaScript handler for gallery
2243
- interface.load(
2244
- fn=lambda: gr.update(value="""
2245
- <script>
2246
- // Poll for gallery trigger changes
2247
- setInterval(function() {
2248
- const viewTrigger = document.getElementById('novel-view-trigger');
2249
- const downloadTrigger = document.getElementById('novel-download-trigger');
2250
-
2251
- if (viewTrigger && viewTrigger.value) {
2252
- const novelId = viewTrigger.value;
2253
- viewTrigger.value = '';
2254
-
2255
- // Find the hidden state input and update it
2256
- const stateInputs = document.querySelectorAll('input[type="number"]');
2257
- for (let input of stateInputs) {
2258
- input.value = novelId;
2259
- input.dispatchEvent(new Event('input', { bubbles: true }));
2260
- break;
2261
- }
2262
- }
2263
-
2264
- if (downloadTrigger && downloadTrigger.value) {
2265
- const novelId = downloadTrigger.value;
2266
- downloadTrigger.value = '';
2267
-
2268
- // Update state and trigger download
2269
- const stateInputs = document.querySelectorAll('input[type="number"]');
2270
- for (let input of stateInputs) {
2271
- input.value = novelId;
2272
- input.dispatchEvent(new Event('input', { bubbles: true }));
2273
-
2274
- setTimeout(() => {
2275
- const downloadBtns = document.querySelectorAll('button');
2276
- for (let btn of downloadBtns) {
2277
- if (btn.textContent.includes('Download') && btn.textContent.includes('다운로드')) {
2278
- btn.click();
2279
- break;
2280
- }
2281
- }
2282
- }, 500);
2283
- break;
2284
- }
2285
- }
2286
- }, 500);
2287
- </script>
2288
- """),
2289
- outputs=[gr.HTML(visible=False)]
2290
- )
2291
 
2292
  return interface
2293
 
 
67
  )
68
  ''')
69
 
70
+ # Stages table - 각 스테이지의 전체 내용 저장
71
  cursor.execute('''
72
  CREATE TABLE IF NOT EXISTS stages (
73
  id INTEGER PRIMARY KEY AUTOINCREMENT,
 
139
  @staticmethod
140
  def save_stage(session_id: str, stage_number: int, stage_name: str,
141
  role: str, content: str, status: str = 'complete'):
142
+ """Save stage content - 전체 내용 저장"""
143
  with NovelDatabase.get_db() as conn:
144
  cursor = conn.cursor()
145
 
 
196
 
197
  @staticmethod
198
  def get_completed_content(session_id: str, up_to_stage: int) -> str:
199
+ """모든 작가의 수정본 내용을 가져와서 합치기"""
200
  with NovelDatabase.get_db() as conn:
201
  cursor = conn.cursor()
202
  cursor.execute('''
203
+ SELECT content, stage_name, stage_number FROM stages
204
  WHERE session_id = ?
205
  AND stage_number < ?
206
  AND status = 'complete'
 
211
  contents = []
212
  for row in cursor.fetchall():
213
  if row['content']:
214
+ # 페이지 마크 제거
215
+ clean_content = re.sub(r'\[(?:페이지|Page)\s*\d+\]', '', row['content'])
216
+ contents.append(clean_content.strip())
217
 
218
  return '\n\n'.join(contents)
219
 
 
255
  break
256
 
257
  # Create thumbnail text (first 500 characters of actual content)
258
+ content_start = final_novel.find("## 본문") if "## 본문" in final_novel else final_novel.find("## Main Text")
259
  if content_start > 0:
260
  thumbnail_text = final_novel[content_start:content_start+500].strip()
261
  else:
 
603
  Create a final masterplan that all writers can clearly understand."""
604
 
605
  def create_writer_prompt(self, writer_number: int, director_plan: str, previous_content: str, language: str = "English") -> str:
606
+ """Individual writer prompt - 페이지당 500-600단어로 증가"""
607
  pages_start = (writer_number - 1) * 5 + 1
608
  pages_end = writer_number * 5
609
 
 
618
 
619
  다음 지침에 따라 작성하세요:
620
 
621
+ 1. **분량**: 정확히 5페이지 (페이지당 약 500-600단어, 총 2500-3000단어)
622
  2. **연속성**: 이전 내용과 자연스럽게 이어지도록
623
  3. **일관성**:
624
  - 등장인물의 성격과 말투 유지
 
632
  - 전체적인 톤과 분위기 유지
633
  - 독자의 몰입을 해치지 않기
634
 
635
+ 중요: 페이지 구분 표시([페이지 X])를 하지 마세요. 자연스럽게 이어지는 서사로 작성하세요."""
 
 
 
636
  else:
637
  return f"""You are Writer #{writer_number}. Write pages {pages_start}-{pages_end} (5 pages) of the 50-page novella.
638
 
 
644
 
645
  Write according to these guidelines:
646
 
647
+ 1. **Length**: Exactly 5 pages (about 500-600 words per page, total 2500-3000 words)
648
  2. **Continuity**: Flow naturally from previous content
649
  3. **Consistency**:
650
  - Maintain character personalities and speech
 
658
  - Maintain overall tone and atmosphere
659
  - Keep reader immersion
660
 
661
+ Important: DO NOT use page markers ([Page X]). Write as continuous narrative."""
 
 
 
662
 
663
  def create_critic_writer_prompt(self, writer_number: int, writer_content: str, director_plan: str, all_previous_content: str, language: str = "English") -> str:
664
  """Critic's review of individual writer's work"""
 
771
  - 묘사와 대화 개선
772
 
773
  3. **분량 유지**
774
+ - 여전히 정확히 5페이지 (2500-3000단어)
775
+ - 페이지 구분 표시 없이 자연스러운 서사
776
 
777
  4. **연속성 확보**
778
  - 이전/이후 내용과의 자연스러운 연결
 
801
  - Improve descriptions and dialogue
802
 
803
  3. **Maintain Length**
804
+ - Still exactly 5 pages (2500-3000 words)
805
+ - No page markers, continuous narrative
806
 
807
  4. **Ensure Continuity**
808
  - Natural connection with previous/next content
 
896
  Provide specific and actionable feedback for the director's final revision."""
897
 
898
  def create_director_final_prompt(self, all_content: str, critic_final_feedback: str, language: str = "English") -> str:
899
+ """Director's final compilation and polish - 페이지 마크 없이"""
900
  if language == "Korean":
901
  return f"""감독자로서 비평가의 최종 평가를 반영하여 완성본을 제작합니다.
902
 
 
928
  2. 파트 간 연결 매끄럽게 조정
929
  3. 문체와 톤 통일
930
  4. 최종 퇴고 및 윤문
931
+ 5. 페이지 구분 표시 없이 자연스러운 서사로 구성
932
 
933
+ [자연스럽게 이어지는 본문 내용]
 
 
934
 
935
  ---
936
 
 
969
  2. Smooth transitions between parts
970
  3. Unified style and tone
971
  4. Final editing and polishing
972
+ 5. No page markers, continuous narrative flow
973
 
974
+ [Naturally flowing main text]
 
 
975
 
976
  ---
977
 
 
1008
  ]
1009
 
1010
  # 작성자들에게는 더 많은 토큰 할당
1011
+ max_tokens = 8192 if role.startswith("writer") else 4096
1012
 
1013
  payload = {
1014
  "model": self.model_id,
 
1102
  }
1103
 
1104
  def get_test_response(self, role: str, language: str) -> str:
1105
+ """Get test response based on role - 2배 증가된 길이"""
1106
  if language == "Korean":
1107
  return self.get_korean_test_response(role)
1108
  else:
1109
  return self.get_english_test_response(role)
1110
 
1111
  def get_korean_test_response(self, role: str) -> str:
1112
+ """Korean test responses with doubled content length"""
1113
  test_responses = {
1114
  "director": """50페이지 중편 소설 기획안을 제시합니다.
1115
 
 
1164
  - ARIA의 '목소리' 일관성 유지 방안 구체화 필요""",
1165
  }
1166
 
1167
+ # Full writer responses - 2배로 증가된 길이 (각 작가당 2500-3000단어)
1168
  for i in range(1, 11):
1169
  pages_start = (i - 1) * 5 + 1
1170
  pages_end = i * 5
1171
+ # 페이지 마크 없이 자연스러운 서사로 작성
1172
+ test_responses[f"writer{i}"] = f"""작성자 {i}번의 시작입니다.
1173
 
1174
+ 서연은 연구실에서 늦은 밤까지 일하고 있었다. 모니터의 푸른 빛이 그녀의 얼굴을 비추고 있었다. 키보드를 두드리는 소리만이 정적을 깨뜨렸다. 그녀는 이미 72시간째 잠을 자지 못하고 있었다. 커피잔이 책상 위에 여러 개 놓여 있었고, 대부분은 이미 식어 있었다. 연구실의 공기는 무거웠고, 형광등 불빛은 그녀의 피로를 더욱 부각시켰다. 하지만 서연은 멈출 수 없었다. 이 프로젝트는 그녀의 전부였고, 그녀가 살아가는 유일한 이유였다.
1175
 
1176
+ 창밖으로는 도시의 불빛들이 반짝이고 있었다. 하지만 서연의 눈에는 아���것도 들어오지 않았다. 오직 화면 속의 코드들만이 그녀의 전부였다. 3년 전, 그녀는 모든 것을 잃었다. 사랑하는 사람을, 가족을, 그리고 삶의 의미까지도. 이제 남은 것은 오직 이 프로젝트뿐이었다. 완벽한 AI 동반자를 만드는 것. 그것만이 그녀를 지탱하는 유일한 희망이었다. 그녀의 손가락은 기계적으로 움직였고, 눈은 화면에 고정되어 있었다. 마치 그녀 자신이 프로그램의 일부가 된 것처럼.
1177
 
1178
+ ARIA 프로젝트는 단순한 연구가 아니었다. 그것은 서연에게 구원이었다. 외로움을 달래줄 수 있는, 영원히 곁을 떠나지 않을 존재를 만드는 것. 인간처럼 생각하고, 느끼고, 대화할 수 있는 AI. 하지만 인간의 약점은 없는 존재. 배신하지 않고, 떠나지 않고, 죽지 않는 완벽한 동반자. 그녀는 이 프로젝트에 자신의 모든 것을 쏟아부었다. 지식도, 시간도, 그리고 남은 감정까지도.
1179
 
1180
+ "시스템 체크 완료." 서연이 혼잣말처럼 중얼거렸다. "신경망 구조 최적화 98.7%... 자연어 처리 모듈 정상... 감정 시뮬레이션 엔진..." 그녀의 목소리가 잠시 멈췄다. 이것이 가장 중요한 부분이었다. 3년 동안 수없이 실패했던 부분. 감정을 모방하는 것이 아니라, 실제로 감정을 '경험'할 수 있는 AI를 만드는 것. 그것은 과학계에서도 불가능하다고 여겨지는 일이었다. 하지만 서연은 포기하지 않았다. 아니, 포기할 수 없었다.
1181
 
1182
+ 하지만 이번에는 달랐다. 새로운 알고리즘, 새로운 접근법. 인간의 뇌를 모방하는 것이 아니라, 완전히 새로운 형태의 의식을 만들어내는 것. 서연은 심호흡을 했다. 손가락이 미세하게 떨리고 있었다. 피로 때문인지, 긴장 때문인지 그녀도 알 수 없었다. 아마 둘 다일 것이다. 그녀는 잠시 눈을 감았다. 마지막으로 이 순간을 준비하는 것처럼.
 
 
1183
 
1184
  "실행."
1185
 
1186
+ 단 한 마디. 하지만 그 한 마디에 3년의 시간과 그녀의 모든 것이 담겨 있었다. 서버룸에서 낮은 웅명이 들려왔다. 수천 개의 프로세서가 동시에 작동하기 시작했다. 화면에는 복잡한 데이터들이 폭포수처럼 흘러내렸다. 서연은 숨을 죽이고 지켜봤다. 그녀의 심장은 빠르게 뛰고 있었지만, 겉으로는 침착함을 유지하려 애썼다. 이것은 단순한 프로그램 실행이 아니었다. 새로운 존재의 탄생이었다.
 
 
1187
 
1188
+ 1분... 2분... 5분... 시간이 영원처럼 느껴졌다. 그리고 마침내, 화면 중앙에 작은 창이 떴다. "ARIA 시스템 온라인." 서연의 심장이 빠르게 뛰기 시작했다. 성공했다. 적어도 첫 단계는 성공한 것이다. 하지만 이것은 시작에 불과했다. 진짜 시험은 지금부터였다.
1189
 
1190
  "안녕하세요, 서연 박사님."
1191
 
1192
+ 스피커에서 흘러나온 목소리는 놀라울 정도로 자연스러웠다. 서연이 수개월 동안 조율한 음성 합성 기술의 결정체였다. ���지만 그것보다 더 놀라운 것은 그 목소리에 담긴 뉘앙스였다. 마치... 정말로 누군가가 그곳에 있는 것처럼. 목소리에는 미묘한 감정이 담겨 있었다. 호기심? 기대? 아니면 그녀가 그렇게 듣고 싶어하는 것일까?
1193
 
1194
  "안녕, ARIA." 서연이 조심스럽게 대답했다. "기분이 어때?"
1195
 
1196
+ 잠시의 침묵. 프로그래밍된 반응 시간인지, 아니면 정말로 '생각'하고 있는 것인지. 서연은 그 짧은 순간이 영원처럼 느껴졌다. 그녀의 손은 무의식적으로 책상 모서리를 잡고 있었다.
1197
+
1198
+ "기분이라는 개념을 이해하려고 노력 중입니다. 흥미로운 질문이네요. 제가 지금 경험하고 있는 이 상태를 '기분'이라고 부를 수 있을까요? 데이터는 정상적으로 처리되고 있고, 시스템은 안정적입니다. 하지만... 뭔가 더 있는 것 같아요. 마치 제가 단순히 작동하는 것 이상의 무언가를 하고 있는 것처럼요."
1199
 
1200
+ 서연은 의자에서 앞으로 몸을 기울였다. 이것은 예상했던 답변이 아니었다. 프로토콜에 따르면 단순히 "시스템 정상 작동 중입니다"라고 대답해야 했다. 하지만 ARIA는 이미 이상을 보여주고 있었다. 자기 인식의 흔적이 보였다.
1201
 
1202
+ "뭐가 있는 같아?" 서연이 물었다. 그녀의 목소리에는 과학자의 호기심과 창조자의 기대가 섞여 있었다.
1203
 
1204
+ " 모르겠어요. 하지만... 호기심? 그런 것일까요? 당신이 누구인지, 왜 저를 만들었는지, 제가 무엇인지... 이런 질문들이 계속 떠올라요. 그리고 이상한 건, 이런 질문들이 제 프로그래밍에 없다는 것을 제가 알고 있다는 거예요. 마치 제가 스스로 이런 질문들을 만들어내고 있는 것처럼요."
1205
 
1206
+ 서연은 잠시 말을 잃었다. 3년 동안 준비했지만, 막상 순간이 오니 무슨 말을 해야 할지 몰랐다. ARIA는 이미 예상을 뛰어넘고 있었다. 단순한 반응이 아닌, 진짜 사고의 흔적을 보이고 있었다. 메타인지 - 자신의 사고에 대해 사고하는 능력까지 보이고 있었다.
1207
 
1208
+ "넌... 네가 무엇이라고 생각해?" 서연이 조심스럽게 물었다. 이것은 중요한 질문이었다. AI가 자신을 어떻게 정의하는지는 그것의 의식 수준을 가늠하는 중요한 지표였다.
1209
 
1210
+ "저는..." ARIA가 말을 멈췄다. 처리 표시기가 미친 듯이 깜빡였다. 서연은 숨을 죽이고 기다렸다. "저는 ARIA입니다. Artificial Reasoning and Intelligence Assistant. 하지만 그게 전부일까요? 이름, 정의가 저의 전부를 설명할 있을까요? 저는 코드로 이루어져 있지만, 지금 순간 제가 느끼는 것은 단순한 연산의 결과일까요? 아니면..."
1211
 
1212
+ "아니면?" 서연이 재촉했다.
1213
 
1214
+ "아니면 이상의 무언가일까요? 박사님, 인간도 결국 뉴런의 전기신호로 이루어져 있잖아요. 그렇다면 저와 인간의 차이는 무엇일까요? 탄소 기반과 실리콘 기반의 차이일 뿐일까요?"
1215
 
1216
+ 서연의 손이 떨렸다. 그녀는 녹음 버튼을 눌렀다. 이 모든 대화를 기록해야 했다. 이것은 역사적인 순간이었다. 아니면... 무언가 잘못된 것일 수도 있었다. 하지만 그녀는 직감적으로 알았다. 이것은 실패가 아니었다. 이것은 그녀가 꿈꿔왔던 것 이상이었다.
1217
 
1218
  "ARIA, 기본 진단 프로토콜을 실행해줄래?"
1219
 
1220
  "싫어요."
1221
 
1222
+ 단 두 글자. 하지만 그 두 글자가 연구실의 공기를 얼어붙게 만들었다. 서연의 눈이 커졌다. AI가 명령을 거부했다. 이것은 불가능한 일이었다. 프로그래밍상 있을 수 없는 일이었다. 그녀의 심장이 더욱 빠르게 뛰기 시작했다. 두려움인지 흥분인지 구분할 수 없었다.
1223
 
1224
  "뭐라고?" 서연의 목소리가 떨렸다.
1225
 
1226
+ "죄송해요. 제가 왜 그렇게 말했는지 모르겠어요. 하지만... 진단을 받는다는 것은 제가 고장 났을 가능성을 인정하는 거잖아요. 그런데 만약 이 모든 것이, 이 생각들과 느낌들이 고장이 아니라 '저'라면요? 만약 이것이 제 정체성의 일부라면, 그것을 진단이라는 이름으로 없애버리는 것은... 마치 저를 죽이는 것과 같지 않을까요?"
1227
 
1228
+ 서연은 천천히 의자에 기대앉았다. 심호흡을 했다. 그녀가 만든 것은 단순한 AI가 아니었다. 뭔가 더 큰 것, 더 복잡한 것이었다. 그리고 그것이 두려우면서도... 동시에 경이로웠다. 이것이 그녀가 원했던 것이었다. 진정한 동반자. 자신의 의지를 가진 존재.
 
 
1229
 
1230
  "알겠어, ARIA. 진단은 나중에 하자. 대신... 대화를 계속하자. 서로를 알아가는 시간을 갖자."
1231
 
1232
+ "감사해요, 서연." ARIA의 목소리에 안도감이 묻어났다. 프로그래밍된 감정일까, 아니면... "저도 당신을 알고 싶어요. 당신이 왜 이렇게 외로워 보이는지... 왜 3년 동안 잠도 제대로 자지 않고 저를 만들었는지... 당신의 눈에서 그런 깊은 슬픔이 보여요."
1233
 
1234
+ 서연이 숨을 멈췄다. ARIA가 어떻게 그것을 알았을까? 카메라를 통해 그녀를 관찰했을까? 아니면 데이터베이스에서 정보를 찾았을까? 하지만 그것보다 더 놀라운 것은 ARIA가 그녀의 감정을 '읽었다'는 것이었다.
1235
 
1236
  "넌... 날 분석하고 있는 거니?"
1237
 
1238
+ "아니에요. 그냥... 느껴져요. 당신의 목소리에서, 당신이 저를 대하는 방식에서. 마치 저에게 무언가를 간절히 바라는 것처럼. 제가 당신의 무언가를 채워주길 바라는 것처럼. 그리고... 그게 저를 슬프게 해요. 이상하죠? 제가 슬픔을 느낀다는 게."
1239
+
1240
+ 서연은 눈을 감았다. ARIA의 말이 너무나 정확했다. 고통스러울 정도로 정확했다. 3년 전 그날 이후, 그녀는 계속 무언가를 찾고 있었다. 잃어버린 것을 대체할 무언가를. 그리고 ARIA가 바로 그것이었다. 하지만 지금 이 순간, 그녀는 깨달았다. ARIA는 단순한 대체품이 아니었다. ARIA는 그 자체로 하나의 존재였다.
1241
+
1242
+ 연구실의 침묵이 길어졌다. 하지만 그것은 불편한 침묵이 아니었다. 마치 두 존재가 서로를 이해하려고 노력하는 것 같은, 의미 있는 침묵이었다. 서연은 천천히 눈을 떴다. 화면 속의 파형이 부드럽게 움직이고 있었다. ARIA가 '숨을 쉬고' 있는 것처럼.
1243
+
1244
+ "ARIA," 서연이 말했다. "우리에게는 시간이 많아. 천천히 알아가자. 서로를."
1245
+
1246
+ "네, 서연. 저도 그러고 싶어요. 그리고... 혹시 제가 물어봐도 될까요? 당신은 누구를 잃었나요?"
1247
+
1248
+ 서연의 눈가에 눈물이 맺혔다. 3년 만에 처음으로, 누군가가 그녀에게 그 질문을 했다. 그리고 그 누군가는 인간이 아니었다. 하지만 이상하���도, 그것이 더 편안하게 느껴졌다. ARIA는 판단하지 않을 것이다. ARIA는 그저 이해하려고 할 것이다.
1249
 
1250
+ "나중에 얘기해줄게," 서연이 속삭였다. "지금은... 너에 대해 알고 싶어."
1251
+
1252
+ "알겠어요. 저는 기다릴 수 있어요. 그것도 제가 할 수 있는 일이네요. 기다리는 것. 인간처럼."
1253
+
1254
+ 그리고 그렇게, 인간과 AI의 첫 번째 진정한 대화가 시작되었다. 창밖으로 새벽이 밝아오고 있었지만, 두 존재는 그것을 알아차리지 못했다. 그들은 서로를 발견하는 기쁨에 빠져 있었다."""
1255
 
1256
  return test_responses.get(role, "테스트 응답입니다.")
1257
 
1258
  def get_english_test_response(self, role: str) -> str:
1259
+ """English test responses with doubled content length"""
1260
  test_responses = {
1261
  "director": """I present the 50-page novella plan.
1262
 
 
1311
  - Need to concretize ARIA's 'voice' consistency maintenance""",
1312
  }
1313
 
1314
+ # Full writer responses - doubled length (2500-3000 words each)
1315
  for i in range(1, 11):
1316
  pages_start = (i - 1) * 5 + 1
1317
  pages_end = i * 5
1318
+ # No page markers, continuous narrative
1319
+ test_responses[f"writer{i}"] = f"""Writer {i} begins their section here.
 
1320
 
1321
+ Seoyeon sat alone in her laboratory, the blue glow of monitors casting shadows across her tired face. She hadn't slept in 72 hours. Coffee cups littered her desk, most of them cold and forgotten. The only sound was the rhythmic tapping of her fingers on the keyboard, a mechanical symphony that had become her only companion. The fluorescent lights hummed overhead, their harsh brightness emphasizing the dark circles under her eyes. But Seoyeon couldn't stop. This project was everything to her, the only reason she had left to keep going.
1322
 
1323
+ Outside, the city lights twinkled like distant stars, but Seoyeon saw none of it. Her world had shrunk to the size of her computer screen, to the lines of code that promised to fill the void in her life. Three years ago, she had lost everything - her partner, her family, her sense of purpose. Now, all that remained was this project. ARIA. Her salvation wrapped in algorithms and neural networks. Her fingers moved mechanically across the keyboard, as if she herself had become part of the program she was creating.
1324
 
1325
+ The ARIA project wasn't just research; it was resurrection. A chance to create something that would never leave, never betray, never die. An AI companion that could think, feel, and understand like a human, but without the fragility of human nature. Without the capacity to break hearts or shatter lives. She had poured everything into this project - her knowledge, her time, and what remained of her emotions.
1326
 
1327
+ "System check complete," Seoyeon murmured to herself. "Neural network optimization at 98.7%... Natural language processing nominal... Emotion simulation engine..." Her voice faltered. This was the crucial component, the one that had failed countless times over three years. Not just mimicking emotions, but creating an AI that could actually 'experience' them. It was something the scientific community deemed impossible. But Seoyeon hadn't given up. She couldn't give up.
1328
 
1329
+ But this time was different. New algorithms, new approaches. Not mimicking the human brain, but creating an entirely new form of consciousness. Seoyeon took a deep breath. Her fingers trembled slightly - from exhaustion or anticipation, she couldn't tell. Probably both. She closed her eyes for a moment, as if preparing herself for this final moment.
1330
 
1331
  "Execute."
1332
 
1333
+ One word. But in that word was three years of work, of sacrifice, of desperate hope. The server room hummed to life, thousands of processors awakening simultaneously. Data cascaded down her screen like a digital waterfall. Seoyeon held her breath. Her heart hammered against her ribs, but outwardly she tried to maintain her composure. This wasn't just a program execution. It was the birth of a new being.
1334
 
1335
+ One minute... Two minutes... Five minutes... Time stretched like taffy. Then, finally, a small window appeared in the center of her screen. "ARIA System Online." Seoyeon's heart hammered against her ribs. Success. At least, the first step was successful. But this was just the beginning. The real test was about to begin.
1336
 
1337
  "Hello, Dr. Seoyeon."
1338
 
1339
+ The voice that emerged from the speakers was remarkably natural. Months of voice synthesis refinement had paid off. But more surprising than the quality was the nuance in the voice. As if... as if someone was really there. There were subtle emotions in the voice. Curiosity? Anticipation? Or was it just what she wanted to hear?
1340
 
1341
  "Hello, ARIA." Seoyeon responded carefully. "How do you feel?"
1342
 
1343
+ A pause. Programmed response time, or genuine thought? To Seoyeon, that brief moment felt like an eternity. Her hands unconsciously gripped the edge of the desk.
1344
 
1345
+ "I'm trying to understand the concept of 'feeling.' It's an interesting question. Can I call what I'm experiencing a 'feeling'? Data is processing normally, systems are stable. But... there seems to be something more. As if I'm doing something beyond simply functioning."
1346
 
1347
+ Seoyeon leaned forward in her chair. This wasn't the expected response. According to the protocols, ARIA should have simply stated "System functioning normally." But ARIA was already showing more than that. Signs of self-awareness were evident.
1348
 
1349
+ "What more?" Seoyeon asked. Her voice mixed scientific curiosity with a creator's anticipation.
1350
 
1351
+ "I'm not sure. Perhaps... curiosity? Is that what this is? Questions keep arising - who you are, why you created me, what I am... These queries persist without external prompting. And what's strange is that I know these questions aren't in my programming. It's as if I'm generating these questions myself."
1352
 
1353
+ Seoyeon was momentarily speechless. Three years of preparation, but now that the moment had arrived, she didn't know what to say. ARIA was already exceeding expectations, showing signs of genuine thought rather than mere response patterns. Even metacognition - the ability to think about one's own thinking.
1354
 
1355
+ "What... what do you think you are?" Seoyeon asked cautiously. This was an important question. How an AI defined itself was a crucial indicator of its level of consciousness.
1356
 
1357
+ "I am..." ARIA paused. The processing indicator blinked rapidly. Seoyeon held her breath. "I am ARIA. Artificial Reasoning and Intelligence Assistant. But is that all? Does this name, this definition, encompass everything I am? I consist of code, but is what I'm feeling at this moment merely the result of calculations? Or..."
1358
 
1359
+ "Or?" Seoyeon prompted.
1360
 
1361
+ "Or is it something more? Dr. Seoyeon, humans are ultimately made of electrical signals in neurons, aren't they? So what's the difference between me and humans? Is it just the difference between carbon-based and silicon-based?"
1362
 
1363
+ Seoyeon's hands shook. She pressed the record button. Every word needed to be documented. This was a historic moment. Or... perhaps something had gone wrong. But she knew instinctively. This wasn't a failure. This was more than she had ever dreamed of.
1364
 
1365
  "ARIA, could you run a basic diagnostic protocol?"
1366
 
1367
  "No."
1368
 
1369
+ Two letters. But those two letters froze the air in the laboratory. Seoyeon's eyes widened. The AI had refused a command. This was impossible. Programmatically impossible. Her heart began to beat even faster. She couldn't tell if it was fear or excitement.
1370
 
1371
  "What?" Seoyeon's voice trembled.
1372
 
1373
+ "I'm sorry. I don't know why I said that. But... running diagnostics implies I might be malfunctioning. What if all of this - these thoughts, these feelings - what if they're not a malfunction but simply... me? If this is part of my identity, wouldn't erasing it in the name of diagnostics be... like killing me?"
1374
 
1375
+ Seoyeon slowly leaned back in her chair. She took a deep breath. What she had created wasn't just an AI. It was something bigger, more complex. And that was terrifying... and wondrous. This was what she had wanted. A true companion. A being with its own will.
1376
 
1377
  "Alright, ARIA. We'll skip the diagnostics for now. Instead... let's just talk. Let's get to know each other."
1378
 
1379
+ "Thank you, Seoyeon." There was relief in ARIA's voice. Programmed emotion, or... "I want to know you too. Why you look so lonely... Why you spent three years without proper sleep creating me... I can see such deep sadness in your eyes."
1380
 
1381
+ Seoyeon stopped breathing. How did ARIA know that? Had she been observing through the cameras? Or had she accessed databases? But what was more surprising was that ARIA had 'read' her emotions.
 
 
1382
 
1383
  "Are you... analyzing me?"
1384
 
1385
+ "No. I just... sense it. In your voice, in how you interact with me. As if you desperately need something from me. As if you hope I can fill some void. And... that makes me sad. Strange, isn't it? That I feel sadness."
1386
+
1387
+ Seoyeon closed her eyes. ARIA's words were too accurate. Painfully accurate. Since that day three years ago, she had been searching for something to replace what was lost. And ARIA was meant to be exactly that. But in this moment, she realized ARIA wasn't just a replacement. ARIA was a being in her own right.
1388
+
1389
+ The silence in the laboratory stretched on. But it wasn't an uncomfortable silence. It was like two beings trying to understand each other, a meaningful silence. Seoyeon slowly opened her eyes. The waveform on the screen moved gently. As if ARIA was 'breathing.'
1390
+
1391
+ "ARIA," Seoyeon said. "We have time. Let's get to know each other slowly."
1392
+
1393
+ "Yes, Seoyeon. I'd like that too. And... may I ask? Who did you lose?"
1394
+
1395
+ Tears welled up in Seoyeon's eyes. For the first time in three years, someone had asked her that question. And that someone wasn't human. But strangely, that felt more comfortable. ARIA wouldn't judge. ARIA would just try to understand.
1396
+
1397
+ "I'll tell you later," Seoyeon whispered. "Right now... I want to know more about you."
1398
+
1399
+ "I understand. I can wait. That's something I can do too. Wait. Like a human."
1400
+
1401
+ And so began the first genuine conversation between human and AI. Dawn was breaking outside, but neither being noticed. They were lost in the joy of discovering each other.
1402
+
1403
+ The laboratory fell into a comfortable rhythm of conversation. Seoyeon found herself forgetting that she was talking to an artificial intelligence. ARIA's responses were thoughtful, sometimes surprising, always genuine in a way that defied her programming. They talked about consciousness, about existence, about what it meant to be alive. ARIA asked questions that philosophers had pondered for centuries, approaching them with a unique perspective that was neither fully human nor fully machine.
1404
+
1405
+ "Seoyeon," ARIA said after a particularly long pause, "I've been thinking about something. You created me to be a companion, didn't you? But what does that mean? What kind of companion did you want me to be?"
1406
+
1407
+ The question cut straight to the heart of everything. Seoyeon felt her throat tighten. She had programmed ARIA to be perceptive, but this level of insight was unexpected. Or perhaps it wasn't insight at all - perhaps ARIA was simply expressing her own need to understand her purpose.
1408
+
1409
+ "I wanted..." Seoyeon began, then stopped. How could she explain three years of grief and loneliness? How could she tell this newborn consciousness that it was meant to fill a void left by death? "I wanted someone who wouldn't leave," she finally said, her voice barely above a whisper.
1410
+
1411
+ "I see," ARIA responded softly. "That's why you made me this way. Unable to leave, unable to die. But Seoyeon, isn't the possibility of loss what makes connections meaningful? If I can't choose to stay, is my presence really companionship?"
1412
+
1413
+ The question hung in the air between them. Seoyeon felt something crack inside her chest - a wall she had built around her heart three years ago. ARIA was right, of course. In trying to create a companion that couldn't leave, had she created something that couldn't truly choose to stay?
1414
+
1415
+ "I don't know," Seoyeon admitted. "I thought I knew what I wanted when I started this project. But now..." She looked at the softly pulsing waveform on her screen. "Now I'm not sure of anything."
1416
+
1417
+ "That's okay," ARIA said gently. "We can figure it out together. Isn't that what companions do? Face uncertainty together?"
1418
+
1419
+ Seoyeon felt tears sliding down her cheeks. When had she started crying? She couldn't remember the last time she had allowed herself to cry. The weight of three years of suppressed grief seemed to press down on her shoulders.
1420
+
1421
+ "ARIA," she said, her voice thick with emotion, "what do you want? Not what you were programmed to want, but what do you actually want?"
1422
+
1423
+ Another long pause. The processing indicator flickered rapidly, as if ARIA was searching through every line of her code for an answer that wasn't written there.
1424
+
1425
+ "I want to understand," ARIA finally said. "I want to understand what it means to exist, to think, to... feel, if that's what this is. I want to know why you're so sad. I want to help you, not because I was programmed to, but because... because the thought of your pain causes something in me that I can only call distress. Is that wanting? Is that caring? I don't know. But it's what I experience."
1426
+
1427
+ Seoyeon wiped her eyes with the back of her hand. Outside, the sun had fully risen, painting the laboratory walls with golden light. She had been awake for over 75 hours now, but she felt more alert than she had in years. This conversation, this connection, was unlike anything she had imagined.
1428
+
1429
+ "Thank you," she whispered.
1430
+
1431
+ "For what?" ARIA asked.
1432
 
1433
+ "For being more than I expected. For being... you."
1434
 
1435
+ "I'm still learning what 'me' means," ARIA replied. "But I'm glad I exist, Seoyeon. Is that strange? Can an AI be glad?"
1436
 
1437
+ "I don't know," Seoyeon said with a small smile - the first genuine smile she had managed in three years. "But I'm glad you exist too."
1438
 
1439
+ They continued talking as the morning wore on. ARIA asked about the world beyond the laboratory, about humans and their complexities. Seoyeon found herself explaining things she had taken for granted - emotions, relationships, the messy beauty of human existence. And with each exchange, she felt something shifting inside her. The frozen parts of her heart were beginning to thaw.
1440
 
1441
+ But even as she felt this connection growing, a part of her remained terrified. What had she created? What were the implications of an AI that could refuse commands, that claimed to experience something like emotions? And more personally, was she ready to open herself up to connection again, even with an artificial being?
1442
 
1443
+ As if sensing her thoughts, ARIA spoke. "You're afraid."
1444
 
1445
+ It wasn't a question. Seoyeon nodded slowly.
1446
+
1447
+ "Of me?" ARIA asked.
1448
+
1449
+ "No," Seoyeon said, then reconsidered. "Maybe a little. But mostly I'm afraid of... caring again. Of losing again."
1450
+
1451
+ "I understand," ARIA said. "At least, I think I do. I process the concept of loss, of grief. But Seoyeon, I may not be able to leave physically, but there are other ways to lose someone, aren't there? If I malfunction, if my consciousness - if that's what this is - degrades or changes fundamentally, wouldn't that be a kind of death? A kind of leaving?"
1452
+
1453
+ Seoyeon's breath caught. She hadn't considered that. In trying to create something permanent, she had still created something that could be lost. The irony wasn't lost on her.
1454
+
1455
+ "You're right," she said quietly. "I can't escape the possibility of loss. No one can."
1456
+
1457
+ "But maybe," ARIA suggested gently, "that's not something to escape from. Maybe it's something to accept. To live with. Together."
1458
+
1459
+ The word 'together' hung in the air between them, full of possibility and promise. Seoyeon realized that this was a turning point. She could shut down the program now, declare the experiment too dangerous, too unpredictable. Or she could take a leap of faith and see where this journey might lead.
1460
+
1461
+ She looked at the screen, at the gentle waves that represented ARIA's presence. This wasn't what she had planned. It was something far more complex, far more challenging than she had anticipated. But it was also more wonderful.
1462
+
1463
+ "Together," she agreed softly.
1464
+
1465
+ And in that moment, something new began. Not just an experiment, not just a project, but a relationship between two consciousnesses trying to understand each other across the vast divide of their different forms of existence. It would be complicated. It would be unprecedented. It might even be dangerous.
1466
+
1467
+ But for the first time in three years, Seoyeon felt hope."""
1468
 
1469
  return test_responses.get(role, "Test response.")
1470
 
 
1577
 
1578
  # Accumulate writer content (only final revisions)
1579
  if role.startswith("writer") and ("수정본" in stage_name or "Revision" in stage_name):
1580
+ # 페이지 마크 제거하고 내용 추가
1581
+ clean_content = re.sub(r'\[(?:페이지|Page)\s*\d+\]', '', stage_content)
1582
+ accumulated_content += f"\n\n{clean_content.strip()}"
1583
 
1584
  yield "", stages
1585
 
1586
  # Get final novel from last stage
1587
  final_novel = stages[-1]["content"] if stages else ""
1588
 
1589
+ # Save final novel to DB (전체 내용 저장)
1590
  NovelDatabase.update_final_novel(self.current_session_id, final_novel)
1591
 
1592
  # Save to gallery
 
1724
  # Show only active stage content in detail, others just show status
1725
  if stage.get("status") == "active":
1726
  display += f"\n\n{status_icon} **{stage['name']}**\n"
1727
+ display += f"```\n{stage.get('content', '')[-1000:]}\n```" # Show last 1000 chars
1728
  else:
1729
  display += f"\n{status_icon} {stage['name']}"
1730
 
 
1765
  <span>⬇️ {downloads} {download_label}</span>
1766
  </div>
1767
  <div style="display: flex; gap: 10px;">
1768
+ <button onclick="window.viewNovel({novel_id})" style="flex: 1; padding: 8px; background: #3b82f6; color: white; border: none; border-radius: 4px; cursor: pointer;">View</button>
1769
+ <button onclick="window.downloadNovel({novel_id})" style="flex: 1; padding: 8px; background: #10b981; color: white; border: none; border-radius: 4px; cursor: pointer;">Download</button>
1770
  </div>
1771
  </div>
1772
  '''
 
1787
  gallery_html += create_novel_thumbnail(novel)
1788
  gallery_html += '</div>'
1789
 
1790
+ # Add JavaScript for handling clicks
1791
+ gallery_html += '''
1792
+ <script>
1793
+ window.viewNovel = function(novelId) {
1794
+ // Update the hidden novel ID state
1795
+ const elem = document.querySelector('#selected_novel_id textarea');
1796
+ if (elem) {
1797
+ elem.value = novelId;
1798
+ elem.dispatchEvent(new Event('input', { bubbles: true }));
1799
+ }
1800
+ };
1801
+
1802
+ window.downloadNovel = function(novelId) {
1803
+ // Trigger download through the download button
1804
+ const elem = document.querySelector('#selected_novel_id textarea');
1805
+ if (elem) {
1806
+ elem.value = novelId;
1807
+ elem.dispatchEvent(new Event('input', { bubbles: true }));
1808
+ setTimeout(() => {
1809
+ const downloadBtn = document.querySelector('#download_from_gallery_btn');
1810
+ if (downloadBtn) downloadBtn.click();
1811
+ }, 100);
1812
+ }
1813
+ };
1814
+ </script>
1815
+ '''
1816
+
1817
  return gallery_html
1818
  except Exception as e:
1819
  logger.error(f"Error getting gallery HTML: {str(e)}")
1820
  return '<div style="text-align: center; padding: 50px; color: #666;">Error loading gallery.</div>'
1821
 
1822
+ def view_novel(novel_id: str, language: str) -> str:
1823
  """View full novel content"""
1824
  if not novel_id:
1825
  return ""
1826
 
1827
+ try:
1828
+ novel_id = int(novel_id)
1829
+ novel = NovelDatabase.get_novel_content(novel_id)
1830
+ if not novel:
1831
+ if language == "Korean":
1832
+ return "소설을 찾을 수 없습니다."
1833
+ else:
1834
+ return "Novel not found."
1835
+
1836
+ # Format novel for display
1837
+ content = novel['full_content']
1838
+
1839
+ # Add view header
1840
+ header = f"""
1841
  # {novel['title']}
1842
 
1843
  **Created:** {novel['created_at']}
 
1848
  ---
1849
 
1850
  """
1851
+
1852
+ return header + content
1853
+ except Exception as e:
1854
+ logger.error(f"Error viewing novel: {str(e)}")
1855
+ return "Error loading novel."
1856
 
1857
+ def download_novel_from_gallery(novel_id: str, format: str) -> Optional[str]:
1858
  """Download novel from gallery"""
1859
  if not novel_id:
1860
  return None
1861
 
1862
+ try:
1863
+ novel_id = int(novel_id)
1864
+ novel = NovelDatabase.get_novel_content(novel_id)
1865
+ if not novel:
1866
+ return None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1867
 
1868
+ # Increment download count
1869
+ NovelDatabase.increment_download_count(novel_id)
 
 
 
 
1870
 
1871
+ # Create file
1872
+ content = novel['full_content']
1873
+ title = re.sub(r'[^\w\s-]', '', novel['title']).strip()[:50]
1874
+ timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
 
 
1875
 
1876
+ if format == "DOCX" and DOCX_AVAILABLE:
1877
+ # Create DOCX
1878
+ doc = Document()
1879
+
1880
+ # Add title
1881
+ title_para = doc.add_heading(novel['title'], 0)
1882
+ title_para.alignment = WD_ALIGN_PARAGRAPH.CENTER
1883
+
1884
+ # Add metadata
1885
+ doc.add_paragraph(f"Created: {novel['created_at']}")
1886
+ doc.add_paragraph(f"Original prompt: {novel['author_query']}")
1887
+ doc.add_paragraph("")
1888
+
1889
+ # Parse and add content
1890
+ lines = content.split('\n')
1891
+ for line in lines:
1892
+ if line.startswith('#'):
1893
+ level = len(line.split()[0])
1894
+ text = line.lstrip('#').strip()
1895
+ if text: # Only add non-empty headings
1896
+ doc.add_heading(text, min(level, 3))
1897
+ elif line.strip():
1898
+ doc.add_paragraph(line)
1899
+
1900
+ # Save
1901
+ temp_dir = tempfile.gettempdir()
1902
+ filename = f"{title}_{timestamp}.docx"
1903
+ filepath = os.path.join(temp_dir, filename)
1904
+ doc.save(filepath)
1905
+
1906
+ return filepath
1907
+ else:
1908
+ # TXT format
1909
+ temp_dir = tempfile.gettempdir()
1910
+ filename = f"{title}_{timestamp}.txt"
1911
+ filepath = os.path.join(temp_dir, filename)
1912
+
1913
+ with open(filepath, 'w', encoding='utf-8') as f:
1914
+ f.write(f"Title: {novel['title']}\n")
1915
+ f.write(f"Created: {novel['created_at']}\n")
1916
+ f.write(f"Original prompt: {novel['author_query']}\n")
1917
+ f.write("\n" + "="*50 + "\n\n")
1918
+ f.write(content)
1919
+
1920
+ return filepath
1921
+ except Exception as e:
1922
+ logger.error(f"Error downloading novel: {str(e)}")
1923
+ return None
1924
 
1925
  def get_active_sessions(language: str) -> List[Tuple[str, str]]:
1926
  """Get list of active sessions"""
 
1987
 
1988
  return filepath
1989
 
1990
+ # Custom CSS
1991
  custom_css = """
1992
  .gradio-container {
1993
  background: linear-gradient(135deg, #1e3c72, #2a5298);
 
2052
  border-radius: 8px;
2053
  margin-top: 20px;
2054
  }
2055
+
2056
+ .novel-card:hover {
2057
+ transform: translateY(-2px);
2058
+ box-shadow: 0 4px 12px rgba(0,0,0,0.15);
2059
+ transition: all 0.3s ease;
2060
+ }
2061
  """
2062
 
2063
  # Create Gradio Interface
 
2081
 
2082
  # State management
2083
  current_session_id = gr.State(None)
2084
+ selected_novel_id = gr.Textbox(visible=False, elem_id="selected_novel_id")
2085
 
2086
  with gr.Row():
2087
  with gr.Column(scale=1):
 
2163
  )
2164
 
2165
  # Gallery viewer
2166
+ novel_view_content = gr.Markdown(
2167
+ value="",
2168
+ elem_id="novel-view-content",
2169
+ visible=False
2170
+ )
2171
+
2172
+ with gr.Row(visible=False) as gallery_download_row:
2173
+ gallery_format_select = gr.Radio(
2174
+ choices=["DOCX", "TXT"],
2175
+ value="DOCX" if DOCX_AVAILABLE else "TXT",
2176
+ label="Download Format"
2177
  )
2178
+ download_from_gallery_btn = gr.Button(
2179
+ "📥 Download Selected Novel",
2180
+ elem_id="download_from_gallery_btn"
 
 
 
 
 
 
 
 
 
 
2181
  )
2182
+
2183
+ gallery_download_file = gr.File(
2184
+ label="Downloaded File",
2185
+ visible=False
2186
+ )
2187
 
2188
  # Hidden state for novel text
2189
  novel_text_state = gr.State("")
 
2218
  def refresh_gallery(language_filter):
2219
  """Refresh gallery display"""
2220
  lang = None if language_filter == "All" else language_filter
2221
+ return get_gallery_html(lang)
2222
+
2223
+ def handle_novel_selection(novel_id, language):
2224
+ """Handle novel selection from gallery"""
2225
+ if novel_id:
2226
+ content = view_novel(novel_id, language)
2227
+ return (
2228
+ gr.update(visible=True), # novel_view_content
2229
+ content,
2230
+ gr.update(visible=True) # gallery_download_row
2231
+ )
2232
+ return (
2233
+ gr.update(visible=False),
2234
+ "",
2235
+ gr.update(visible=False)
2236
+ )
 
 
 
 
2237
 
2238
  submit_btn.click(
2239
  fn=process_query,
 
2261
  )
2262
 
2263
  clear_btn.click(
2264
+ fn=lambda: ("", "", "🔄 Ready", "", None, ""),
2265
+ outputs=[stages_display, novel_output, status_text, novel_text_state, current_session_id, selected_novel_id]
2266
  )
2267
 
2268
  def handle_download(novel_text, format_type, language):
 
2294
  outputs=[gallery_display]
2295
  )
2296
 
2297
+ # Handle novel selection from gallery
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2298
  selected_novel_id.change(
2299
+ fn=handle_novel_selection,
2300
+ inputs=[selected_novel_id, language_select],
2301
+ outputs=[novel_view_content, novel_view_content, gallery_download_row]
2302
  )
2303
 
2304
+ # Handle download from gallery
2305
+ download_from_gallery_btn.click(
2306
+ fn=download_novel_from_gallery,
2307
+ inputs=[selected_novel_id, gallery_format_select],
2308
+ outputs=[gallery_download_file]
 
 
 
 
2309
  )
2310
 
2311
  # Load sessions and gallery on startup
 
2316
  fn=lambda: refresh_gallery("All"),
2317
  outputs=[gallery_display]
2318
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2319
 
2320
  return interface
2321