We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8d261 commit c0833f3Copy full SHA for c0833f3
.github/workflows/deploy.yml
@@ -26,7 +26,6 @@ jobs:
26
AI_PROMPT: ${{ secrets.AI_PROMPT }}
27
AI_API_URL: ${{ secrets.AI_API_URL }}
28
AI_API_KEY: ${{ secrets.AI_API_KEY }}
29
- AI_REQUEST_ID: ${{ secrets.AI_REQUEST_ID }}
30
run: |
31
docker-compose up -d --build
32
docker-compose.yml
@@ -25,7 +25,6 @@ services:
25
- AI_PROMPT=${AI_PROMPT}
- AI_API_URL=${AI_API_URL}
- AI_API_KEY=${AI_API_KEY}
- - AI_REQUEST_ID=${AI_REQUEST_ID}
nginx:
build:
server/src/ai/ai.service.ts
@@ -77,7 +77,7 @@ export class AiService {
77
],
78
79
max_tokens: 1024,
80
- temperature: 0.7,
+ temperature: 0.5,
81
top_p: 0.8,
82
stream: true, // 스트리밍 응답 요청
83
};
0 commit comments