발행이 SiteOntology 를 부르는데 서버는 따로 띄워야 했다. 실측(2026-09-14): 서버가 없으면 `[seo] SiteOntology 실패 — 키워드 없이 발행: ConnectError` 로 빌드는 성공하고 메타만 빈다 — 화면으로는 안 보이는 종류다. 한 벌로 묶어 "코드는 올라갔는데 서버가 없는" 상태를 없앤다. - ontology/: gitea.o2o.kr/Web4ai/o2o-site-ontology 를 이 레포로 편입(그 원격은 그대로 남는다) - ontology/Dockerfile(신규): 베이스는 node:22-slim. alpine 은 임베딩 런타임(onnxruntime)이 musl 바이너리를 안 줘서 적재가 ERR_DLOPEN_FAILED 로 죽는다 — 빌드는 성공하고 실행에서만 터진다 - docker-compose.yml: ontology · ontology-postgres(pgvector) · ontology-redis 추가. 자체 DB 를 쓰는 이유는 pgvector 확장 때문이다 — web4ai_db 를 남의 서비스 확장에 묶지 않는다 - 임베딩 모델(120MB)은 이미지에 굽지 않고 볼륨(ontology-model)에 남긴다 - 컨테이너끼리는 `http://ontology:3100` 으로 만난다. `.env` 의 127.0.0.1 은 컨테이너 자기 자신이라 안 닿는다 검증: 3개 기동 · 백엔드 컨테이너에서 ontology:3100/demo HTTP 200 · 마이그레이션·시드 완료 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
57 lines
2.0 KiB
TypeScript
57 lines
2.0 KiB
TypeScript
import { Body, Controller, Get, Param, Post, Query } from '@nestjs/common';
|
|
import { MatchService } from './match.service';
|
|
import { ServingService } from './serving.service';
|
|
|
|
@Controller('v1')
|
|
export class ServingController {
|
|
constructor(
|
|
private readonly serving: ServingService,
|
|
private readonly matcher: MatchService,
|
|
) {}
|
|
|
|
/** 발행된 사이트가 렌더링 시 호출 — SEO 메타 */
|
|
@Get('sites/:id/seo')
|
|
seo(@Param('id') id: string, @Query('limit') limit?: string) {
|
|
return this.serving.seo(id, clamp(limit, 20, 50));
|
|
}
|
|
|
|
/** 발행된 사이트가 렌더링 시 호출 — AEO(답변엔진) 소스 */
|
|
@Get('sites/:id/aeo')
|
|
aeo(@Param('id') id: string, @Query('limit') limit?: string) {
|
|
return this.serving.aeo(id, clamp(limit, 10, 30));
|
|
}
|
|
|
|
/** 어드민: 의미 기반 키워드 검색 */
|
|
@Post('keywords/search')
|
|
search(@Body() body: { query: string; limit?: number }) {
|
|
return this.serving.searchKeywords(body.query, Math.min(body.limit ?? 10, 50));
|
|
}
|
|
|
|
/**
|
|
* 자유 입력(업체명/문장) → 적재된 사전에서 잘 맞는 키워드.
|
|
* mode=fusion (기본) — 속성별 서브 질의 + 가중 RRF + 사실 기반 필터
|
|
* mode=single — 프로필을 통짜로 한 벡터에 넣는 이전 방식 (비교용)
|
|
*/
|
|
@Post('match')
|
|
match(@Body() body: { query: string; limit?: number; mode?: 'fusion' | 'single' }) {
|
|
const limit = Math.min(body.limit ?? 40, 200);
|
|
return body.mode === 'single'
|
|
? this.serving.match(body.query ?? '', limit)
|
|
: this.matcher.fusion(body.query ?? '', limit);
|
|
}
|
|
|
|
/** 성과 피드백 주입 (Search Console / 유입 로그) */
|
|
@Post('sites/:id/performance')
|
|
performance(
|
|
@Param('id') id: string,
|
|
@Body() body: { items: Array<{ keyword: string; impressions: number; clicks: number }> },
|
|
) {
|
|
return this.serving.applyPerformance(id, body.items ?? []);
|
|
}
|
|
}
|
|
|
|
function clamp(v: string | undefined, def: number, max: number): number {
|
|
const n = v ? Number(v) : def;
|
|
return Number.isFinite(n) ? Math.min(Math.max(1, n), max) : def;
|
|
}
|