PromptDay는 자연어 기반 일정 인식 및 관리 기능을 제공하는 어플리케이션입니다.
웹 사이트에 있는 일정 관련 텍스트를 클라이언트 프로그램을 통해 자체 Fine-Tuning LLM 서버와의 통신을 통해, 연동되어있는 3rd-party 앱(e.g., Google Calendar)에 추가할 수 있습니다.

기존 **Kaggle**에 등록되어있는 데이터를 기준으로, 별도의 Python Script를 실행시켜 Openrouter.ai 를 통해 데이터 증강작업 실행
https://github.com/lunaticscode/promptday-data-augment-pjt/blob/main/augment_dataset_1.py

위 증강된 데이터를 기준으로 Colab 을 통해 LoRA Fine-Tuning 진행(+ gguf 포맷으로 변경)
https://colab.research.google.com/drive/1XedUzkDLdWXe2n-neP6MJ5Npj80Lt_Xl?usp=sharing
Runpod 의 **Storage(Network Volume)**에 위의 훈련된 모델을 저장, 그리고 Serverless 를 통해 모델과 소통할 수 있게 I/O 핸들러 배포.

자체 WAS(Express) 구축을 통해 **Runpod**에 배포된 LLM 핸들러와 연동.
https://github.com/lunaticscode/promptday-was/blob/main/src/routes/llm.route.ts
(OCI 배포 기준 연동 테스트)
[테스트 URL] https://promptday-api.hw-lab.site/

// Prompt 테스트 API 명세
// **(Serverless 콜드스타트로 인하여 일부 응답 시간이 10초 ~ 20초 내외 소요될 수 있습니다.)**
// Url: <https://promptday-api.hw-lab.site/api/llm/prompt>
// Method: POST
// Content-Type: application/json
// Body
{
"prompt": "Hi Insoo, Seattle’s AI ecosystem is thriving, and the Seattle AI Innovators meetup is where engineers, researchers, and builders come together to shape what’s next. Expect inspiring talks that dive into real-world AI agent applications, along with practical insights you can take back to your own projects. Whether you’re looking to explore new technical approaches or connect with peers driving innovation across industries, this is the place to learn, share, and grow alongside Seattle’s AI community. Join us for the Seattle AI Innovators meetup: Date: Tuesday, September 9, 2025 Time: 5:30 PM PT Venue: RE:PUBLIC, 429 Westlake Avenue North, Seattle What to expect:"
}
클라이언트 프로그램( **Chrome** **Extension**)을 통해 자체 **WAS(Express)**와 통신하여 LLM 분석 결과를 반환
[Chrom Extension 소개 사이트] https://promptday-extension.hw-lab.site/

<aside>
🏃 데모 버전 크롬 웹스토어 등록 진행중 (2025.08.25)

</aside>
[프로젝트 관련 소스 링크]
Colab
LoRA Fine-Tuning Training
https://colab.research.google.com/drive/1XedUzkDLdWXe2n-neP6MJ5Npj80Lt_Xl?usp=sharing