Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/app/prompt-studio/page.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ describe("PromptStudioPage", () => {
expectNoPublicIdentityHeaders((fetchMock.mock.calls[0] as unknown as [RequestInfo, RequestInit?])?.[1]?.headers);

act(() => {
getButton(page, "데이터 뢄석 μΈμ‚¬μ΄νŠΈ").click();
getButton(page, "데이터 뢄석 νŒλ‹¨ 포인트").click();
});
expect(page.textContent).not.toContain("λ§₯락 μ’…ν•© κ²°κ³Ό");
});
Expand Down
18 changes: 9 additions & 9 deletions frontend/src/app/prompt-studio/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ function getSafeErrorSummary(error: unknown, fallback: string) {

const TEMPLATE_GROUPS = [
{
name: '업무 μš”μ•½',
name: '업무 λ§₯락 μ’…ν•©',
items: [
{ id: 'summary', title: 'λ¬Έμ„œ μš”μ•½/μ΄ˆμ•ˆ μž‘μ„±', favorite: true },
{ id: 'insight', title: '데이터 뢄석 μΈμ‚¬μ΄νŠΈ' },
{ id: 'summary', title: 'λ¬Έμ„œ 핡심 λ§₯락/μ΄ˆμ•ˆ μž‘μ„±', favorite: true },
{ id: 'insight', title: '데이터 뢄석 νŒλ‹¨ 포인트' },
{ id: 'mail', title: '이메일 μž‘μ„±' },
{ id: 'automation', title: '업무 μžλ™ν™” μ œμ•ˆ' },
],
Expand All @@ -114,7 +114,7 @@ const TEMPLATE_GROUPS = [
name: '회의/리포트',
items: [
{ id: 'meeting', title: '회의둝 μž‘μ„±' },
{ id: 'decision', title: 'μ˜μ‚¬κ²°μ • μš”μ•½' },
{ id: 'decision', title: 'μ˜μ‚¬κ²°μ • 핡심 λ§₯락' },
{ id: 'weekly', title: 'μ£Όκ°„ λ³΄κ³ μ„œ μž‘μ„±' },
],
},
Expand Down Expand Up @@ -148,7 +148,7 @@ const MODEL_OPTIONS = [
{ label: 'OpenAI Compatible', value: 'provider-default' },
];
const RESPONSE_STYLES = ['전문적이고 κ°„κ²°ν•˜κ²Œ', 'μΉœκ·Όν•˜κ³  μƒμ„Έν•˜κ²Œ', 'μ‹€ν–‰ ν•­λͺ© 쀑심'];
const OUTPUT_FORMATS = ['λ§ˆν¬λ‹€μš΄ (Markdown)', 'JSON ꡬ쑰화', '짧은 μš”μ•½'];
const OUTPUT_STYLES = ['λ§ˆν¬λ‹€μš΄ (Markdown)', 'JSON ꡬ쑰화', '짧은 핡심 λ§₯락'];

const QUALITY_CHECKS = ['μš”κ΅¬μ‚¬ν•­ μΆ©μ‘±', 'ꡬ쑰 및 가독성', 'μ •ν™•μ„±/사싀성', 'κ·Όκ±°/좜처 포함', '톀 & μŠ€νƒ€μΌ 일관성'];

Expand All @@ -160,10 +160,10 @@ const VERSION_HISTORY = [
];

const RECENT_TEST_RESULTS = [
{ time: '2024.05.25 10:22', case: 'λΆ„κΈ° μ„±κ³Ό λ³΄κ³ μ„œ μš”μ•½', result: '성곡', score: 92, tokens: '1,024', duration: '2.8초' },
{ time: '2024.05.25 10:22', case: 'λΆ„κΈ° μ„±κ³Ό λ³΄κ³ μ„œ 핡심 λ§₯락', result: '성곡', score: 92, tokens: '1,024', duration: '2.8초' },
{ time: '2024.05.25 10:18', case: '고객 ν”Όλ“œλ°± 뢄석', result: '성곡', score: 88, tokens: '1,156', duration: '3.1초' },
{ time: '2024.05.25 10:12', case: 'κ²½μŸμ‚¬ 뢄석 리포트', result: 'λΆ€λΆ„ 성곡', score: 76, tokens: '1,432', duration: '3.6초' },
{ time: '2024.05.25 10:05', case: 'μ œν’ˆ μΆœμ‹œ κ³„νš μš”μ•½', result: '성곡', score: 95, tokens: '987', duration: '2.6초' },
{ time: '2024.05.25 10:05', case: 'μ œν’ˆ μΆœμ‹œ κ³„νš 핡심 λ§₯락', result: '성곡', score: 95, tokens: '987', duration: '2.6초' },
];

const DEPLOYMENT_HISTORY = [
Expand Down Expand Up @@ -203,7 +203,7 @@ export default function PromptStudioPage() {
model: MODEL_OPTIONS[0].value,
temperature: '0.3',
responseStyle: RESPONSE_STYLES[0],
outputFormat: OUTPUT_FORMATS[0],
outputFormat: OUTPUT_STYLES[0],
});
const [showTemplateCounts, setShowTemplateCounts] = useState(true);
const promptVariables = useMemo(() => extractPromptVariables(formData.content), [formData.content]);
Expand Down Expand Up @@ -594,7 +594,7 @@ export default function PromptStudioPage() {
onChange={(event) => setPromptSetting('outputFormat', event.target.value)}
className="h-10 w-full rounded-xl border border-input bg-background px-3 text-sm font-semibold outline-none focus-visible:ring-2 focus-visible:ring-ring/40"
>
{OUTPUT_FORMATS.map((format) => <option key={format}>{format}</option>)}
{OUTPUT_STYLES.map((style) => <option key={style}>{style}</option>)}
</select>
</div>
</CardContent>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/SearchLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ export function SearchLayout() {
<div>
<p className="text-sm font-black text-purple-900">νŒλ‹¨ 보쑰</p>
<p className="mt-2 text-sm leading-6 text-purple-900/80">
이 ν™”λ©΄μ˜ AI/관계 μ •λ³΄λŠ” 검색 점수, 원본 λ©”μ‹œμ§€, μŠ€λ ˆλ“œ λ²”μœ„λ₯Ό ν•¨κ»˜ λ³΄μ—¬μ£ΌλŠ” 보쑰 κ·Όκ±°μž…λ‹ˆλ‹€. μ™ΈλΆ€ 싀행은 μ‚¬μš©μžκ°€ 메일, 일정, 관계 캑처 μ•‘μ…˜μ„ λͺ…μ‹œμ μœΌλ‘œ 선택할 λ•Œλ§Œ μ§„ν–‰λ©λ‹ˆλ‹€.
이 ν™”λ©΄μ˜ AI/관계 μ •λ³΄λŠ” λ§₯락 검색 점수, 원본 λ©”μ‹œμ§€, μŠ€λ ˆλ“œ λ²”μœ„λ₯Ό ν•¨κ»˜ λ³΄μ—¬μ£ΌλŠ” 보쑰 κ·Όκ±°μž…λ‹ˆλ‹€. μ™ΈλΆ€ 싀행은 μ‚¬μš©μžκ°€ 메일, 일정, 관계 캑처 μ•‘μ…˜μ„ λͺ…μ‹œμ μœΌλ‘œ 선택할 λ•Œλ§Œ μ§„ν–‰λ©λ‹ˆλ‹€.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/mobile-workspace-panels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type MobilePanelCopy = {

const mobileSearchCopy: MobilePanelCopy = {
eyebrow: 'λ§₯락 검색',
title: '메일, 첨뢀, 일정, μ‚¬λžŒμ„ ν•œ λ²ˆμ— κ²€μƒ‰ν•©λ‹ˆλ‹€.',
title: '메일, 첨뢀, 일정, μ‚¬λžŒμ„ ν•œ λ²ˆμ— λ§₯락 κ²€μƒ‰ν•©λ‹ˆλ‹€.',
description: '흩어진 λŒ€ν™”μ™€ νŒŒμΌμ„ ν•˜λ‚˜μ˜ νŒλ‹¨ νλ¦„μœΌλ‘œ λ¬Άμ–΄ λ³΄μ—¬μ£ΌλŠ” λͺ¨λ°”일 λ§₯락 검색 μ§„μž…μ μž…λ‹ˆλ‹€.',
loading: 'λ§₯락 검색 κ²°κ³Όλ₯Ό λΆˆλŸ¬μ˜€λŠ” μ€‘μž…λ‹ˆλ‹€.',
empty: 'λ§₯락 검색 κ²°κ³Όκ°€ μ—†μŠ΅λ‹ˆλ‹€.',
Expand Down
Loading