chore(gateway): 인증 조합별 상류 상태코드 로그 + deploy.sh 가 TOKEN_PREFIX=bearer 채움
Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5.1
parent
7397061665
commit
9bd0849f27
@@ -100,6 +100,7 @@ async def chat_completions(request: HttpRequest) -> HttpResponse:
|
|||||||
for i, (vkey, vh) in enumerate(variants):
|
for i, (vkey, vh) in enumerate(variants):
|
||||||
req = client.build_request("POST", cfg.url, headers=vh, json=body)
|
req = client.build_request("POST", cfg.url, headers=vh, json=body)
|
||||||
resp = await client.send(req, stream=True)
|
resp = await client.send(req, stream=True)
|
||||||
|
log.info("ito ← %s (auth %s/%s: %s)", resp.status_code, i + 1, len(variants), vkey)
|
||||||
if resp.status_code == 401 and i + 1 < len(variants):
|
if resp.status_code == 401 and i + 1 < len(variants):
|
||||||
await resp.aclose() # 인증 형식이 안 맞은 것 — 다른 조합으로 한 번 더
|
await resp.aclose() # 인증 형식이 안 맞은 것 — 다른 조합으로 한 번 더
|
||||||
continue
|
continue
|
||||||
|
|||||||
@@ -16,7 +16,9 @@ grep -q '^AAF_FABRIX_READ_TIMEOUT_S=' .env || echo 'AAF_FABRIX_READ_TIMEOUT_S=30
|
|||||||
grep -q '^ABAP_INDEX_URL=' .env || echo 'ABAP_INDEX_URL=http://127.0.0.1:8100' >> .env
|
grep -q '^ABAP_INDEX_URL=' .env || echo 'ABAP_INDEX_URL=http://127.0.0.1:8100' >> .env
|
||||||
grep -q '^BACKEND_PORT=' .env || echo 'BACKEND_PORT=8080' >> .env
|
grep -q '^BACKEND_PORT=' .env || echo 'BACKEND_PORT=8080' >> .env
|
||||||
# 이미지 붙은 턴은 백엔드가 OpenCode 에 이 모델을 지정 — 기본(339)으로 가면 OpenCode 가 이미지를 떨굼
|
# 이미지 붙은 턴은 백엔드가 OpenCode 에 이 모델을 지정 — 기본(339)으로 가면 OpenCode 가 이미지를 떨굼
|
||||||
grep -q '^OPENCODE_VISION_MODEL=' .env || echo 'OPENCODE_VISION_MODEL=gateway/605' >> .env # OpenCode 가 붙을 Django 포트. 없으면 8001 로 렌더돼 'Unable to connect'
|
grep -q '^OPENCODE_VISION_MODEL=' .env || echo 'OPENCODE_VISION_MODEL=gateway/605' >> .env
|
||||||
|
# 고객사 FabriX 는 Bearer 접두 필수(9/18 실측). 첫 시도부터 맞게 — 날것으로 보내면 401 뒤 재시도에 기댐
|
||||||
|
grep -q '^AAF_FABRIX_TOKEN_PREFIX=' .env || echo 'AAF_FABRIX_TOKEN_PREFIX=bearer' >> .env # OpenCode 가 붙을 Django 포트. 없으면 8001 로 렌더돼 'Unable to connect'
|
||||||
sed -i 's/^AAF_FABRIX_MODEL_ID=.*/AAF_FABRIX_MODEL_ID=339/; s/^AAF_FABRIX_MODELS=.*/AAF_FABRIX_MODELS=339:GaussO Flash,581:GaussO Think,605:Gemma4/' .env
|
sed -i 's/^AAF_FABRIX_MODEL_ID=.*/AAF_FABRIX_MODEL_ID=339/; s/^AAF_FABRIX_MODELS=.*/AAF_FABRIX_MODELS=339:GaussO Flash,581:GaussO Think,605:Gemma4/' .env
|
||||||
.venv/bin/python manage.py migrate --noinput
|
.venv/bin/python manage.py migrate --noinput
|
||||||
[ -f seed/snippets.db ] && .venv/bin/python manage.py import_snippets seed/snippets.db
|
[ -f seed/snippets.db ] && .venv/bin/python manage.py import_snippets seed/snippets.db
|
||||||
|
|||||||
Reference in New Issue
Block a user