수정 버전

This commit is contained in:
jade
2026-07-16 09:19:32 +09:00
parent 5e97e6754f
commit 6d49edfc2b

View File

@@ -189,7 +189,10 @@
// 3. 백엔드 통신 (SSE Stream) // 3. 백엔드 통신 (SSE Stream)
const response = await fetch('/api/chat', { const response = await fetch('/api/chat', {
method: 'POST', method: 'POST',
headers: { 'Content-Type': 'application/json' }, headers: {
'Content-Type': 'application/json',
'X-Agent-Id': 'TESTER-DEV' // 권한 통과를 위한 테스트 Agent ID
},
body: JSON.stringify({ message: text }) body: JSON.stringify({ message: text })
}); });