Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -135,7 +135,7 @@ def generate_blog_post(query, prompt_template):
|
|
135 |
combined_content = f"참고글1:\n{ref1}\n\n참고글2:\n{ref2}\n\n참고글3:\n{ref3}"
|
136 |
|
137 |
# 랜덤 시드 생성
|
138 |
-
random_seed = random.randint(1,
|
139 |
|
140 |
full_prompt = f"주제: {query}\n\n{prompt_template}\n\n참고 내용:\n{combined_content}"
|
141 |
|
|
|
135 |
combined_content = f"참고글1:\n{ref1}\n\n참고글2:\n{ref2}\n\n참고글3:\n{ref3}"
|
136 |
|
137 |
# 랜덤 시드 생성
|
138 |
+
random_seed = random.randint(1, 2**32 - 1)
|
139 |
|
140 |
full_prompt = f"주제: {query}\n\n{prompt_template}\n\n참고 내용:\n{combined_content}"
|
141 |
|