Skip to content

Commit c0833f3

Browse files
committed
fix: 불필요한 환경변수 제거
1 parent 9c8d261 commit c0833f3

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
AI_PROMPT: ${{ secrets.AI_PROMPT }}
2727
AI_API_URL: ${{ secrets.AI_API_URL }}
2828
AI_API_KEY: ${{ secrets.AI_API_KEY }}
29-
AI_REQUEST_ID: ${{ secrets.AI_REQUEST_ID }}
3029
run: |
3130
docker-compose up -d --build
3231

docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ services:
2525
- AI_PROMPT=${AI_PROMPT}
2626
- AI_API_URL=${AI_API_URL}
2727
- AI_API_KEY=${AI_API_KEY}
28-
- AI_REQUEST_ID=${AI_REQUEST_ID}
2928

3029
nginx:
3130
build:

server/src/ai/ai.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class AiService {
7777
],
7878

7979
max_tokens: 1024,
80-
temperature: 0.7,
80+
temperature: 0.5,
8181
top_p: 0.8,
8282
stream: true, // 스트리밍 응답 요청
8383
};

0 commit comments

Comments
 (0)