From 256de23f48ed157af53d0ababaf647f694dd606d Mon Sep 17 00:00:00 2001 From: GRemH Date: Wed, 7 Jan 2026 01:55:30 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Gemini=20=EB=B6=84=EC=84=9D=20=EA=B2=B0?= =?UTF-8?q?=EA=B3=BC=EC=9A=A9=20TypeScript=20=EC=9D=B8=ED=84=B0=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=8A=A4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - QAPair 인터페이스 추가 (질문-답변 쌍) - AnalysisResult 인터페이스 추가 (OCR 결과 및 QA 세트) - ResultsDisplay와 geminiService의 TypeScript 컴파일 오류 해결 --- annotate_tools/types.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/annotate_tools/types.ts b/annotate_tools/types.ts index 4aa7f69..d03e624 100644 --- a/annotate_tools/types.ts +++ b/annotate_tools/types.ts @@ -1,4 +1,14 @@ +export interface QAPair { + question: string; + answer: string; +} + +export interface AnalysisResult { + ocrResult: string; + qaSet: QAPair[]; +} + export interface TableGenerationResult { image_path: string; html_table: string;