📦 Initialize Geulbeot structure and merge Prompts & test projects

This commit is contained in:
2026-03-05 11:32:29 +09:00
commit 555a954458
687 changed files with 205247 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
response = client.chat.completions.create(
gpt-4.1-2025-04-14,
messages=[{role: user, content: f다음을 한국어로 번역해줘:\n{text}}]
)
return response.choices[0].message.content.strip()

View File

@@ -0,0 +1,9 @@
resp = openai.ChatCompletion.create(
model=model,
messages=[
{role:system, content: system_prompt},
{role:user, content: user_prompt}
],
temperature=0.7
)
return resp.choices[0].message.content.strip()

View File

@@ -0,0 +1,15 @@
response = client.chat.completions.create(
gpt-4.1-2025-04-14,
messages=[{role: user, content: f아래 내용을 50자 내외로 요약해줘:\n{text}}]
)
return response.choices[0].message.content.strip()
for category in categories:
driver.get(base_url.format(category))
time.sleep(2)
# Load
while True:
try:
load_more = driver.find_element(By.XPATH, //button[contains(text(),'Load more templates')])