Skip to content

Commit

Permalink
Merge branch 'main' into Quest
Browse files Browse the repository at this point in the history
  • Loading branch information
aengzu authored Sep 2, 2024
2 parents d5029ad + 376f09f commit b9ccb85
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@
## SHOWCASES

시연 영상 : https://www.youtube.com/watch?v=K5g2jtDPIS0
<br>
웹앱으로 배포를 하였으나, AI API 비용상의 문제로 링크 비공개 처리하였습니다 🥲

<p float="left">
<img src="https://github.com/user-attachments/assets/a4da2571-8683-47ff-839a-cbfe9263b532" width="200" />
<img src="https://github.com/user-attachments/assets/e9852056-13c9-474a-8515-7c89e4fb5c98" width="200" />
<img src="https://github.com/user-attachments/assets/6e569e0c-08d4-4703-b346-a779289bd3a8" width="200" />
<img src="https://github.com/user-attachments/assets/0e24434d-f988-4808-9584-b32b328220a4" width="200" />
<img src="https://github.com/user-attachments/assets/fe98f662-f539-4ec8-9ec5-67b50657f7db" width="200" />
<img src="https://github.com/user-attachments/assets/944b37a6-4dbf-495a-8923-82e7686a63a1" width="200" />
<img src="https://github.com/user-attachments/assets/f3f55625-b84f-4586-8ecb-5c1b1969c078" width="200" />
</p>

<p float="left">
<img src="https://github.com/user-attachments/assets/40607284-4dca-44eb-9327-f60e757e3166" width="200" />
<img src="https://github.com/user-attachments/assets/b5db720b-79c1-4b08-a964-72af57efa324" width="200" />
<img src="https://github.com/user-attachments/assets/45b3ac96-ee74-43f6-906c-ac461588a449" width="200" />
</p>

## Deploy
- 웹앱 배포 : Amazon S3 (CloudFront 와 연동)
- DB 서버 배포 : Amazon EC2
- DB : Amazon RDS

## Getting Started
My flutter version : Flutter 3.23.0-8.0.pre.3
Expand Down
5 changes: 2 additions & 3 deletions lib/di/locator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,8 @@ void _setupAI() {
apiKey: dotenv.env['API_KEY']!,
defaultOptions: const ChatOpenAIOptions(
temperature: 0.8,
model: 'gpt-4o',
model: 'gpt-4-turbo',
maxTokens: 600,
responseFormat: ChatOpenAIResponseFormat(type: ChatOpenAIResponseFormatType.jsonObject)
),
));
getIt.registerLazySingleton<ConversationBufferMemory>(() => ConversationBufferMemory(
Expand Down Expand Up @@ -164,7 +163,7 @@ void _setupAI() {
- 호감도의 감소 및 증가 단위는 10 단위로 가능합니다.
[대화기록]
아래의 대화 기록에서 sender 가 true 면 {userName} 이 한 말이고 false 면 당신이 한 말입니다. 다음 대화 기록을 보고, {userName}의 마지막 말에 대한 대답을 해주세요. 당신은 이전에 당신이 했던 말을 그대로 반복하지 않습니다.
아래의 대화 기록에서 sender 가 true 면 {userName} 이 한 말이고 false 면 당신이 한 말입니다. 다음 대화 기록을 보고, {userName}의 마지막 말에 대한 대답을 해주세요. 당신은 이전에 당신이 했던 말을 그대로 반복하지 않습니다.
당신은 sender 가 false 인 입장인 것을 명심하세요. {userName} 과 당신을 혼동하면 안되고 무조건 sender 가 false 인 입장에서 말합니다.
대화 기록 : {chat_history}
Expand Down

0 comments on commit b9ccb85

Please sign in to comment.