@gendive/chatllm 0.17.27 → 0.17.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react/index.d.mts +43 -1
- package/dist/react/index.d.ts +43 -1
- package/dist/react/index.js +389 -79
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +387 -79
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/react/index.d.mts
CHANGED
|
@@ -1332,6 +1332,8 @@ interface UseChatUIReturn {
|
|
|
1332
1332
|
* @Todo vibecode - 항목을 done(건너뜀)으로 마킹 후 다음 단계 진행
|
|
1333
1333
|
*/
|
|
1334
1334
|
handleChecklistSkip: (messageId: string, stepIndex: number) => void;
|
|
1335
|
+
/** @Todo vibecode - 활성 체크리스트가 포함된 메시지 (패널 자동 열기 트리거용) */
|
|
1336
|
+
activeChecklistMessage: ChatMessage | null;
|
|
1335
1337
|
}
|
|
1336
1338
|
|
|
1337
1339
|
/**
|
|
@@ -1463,6 +1465,11 @@ interface UseChatUIOptions {
|
|
|
1463
1465
|
* @Todo vibecode - AI가 자동으로 선택지를 제공하도록 시스템 프롬프트에 가이드 추가
|
|
1464
1466
|
*/
|
|
1465
1467
|
enablePoll?: boolean;
|
|
1468
|
+
/**
|
|
1469
|
+
* @description AI 자동 실행형 체크리스트 기능 활성화 (기본: true)
|
|
1470
|
+
* @Todo vibecode - 복합 작업 시 AI가 <checklist> 태그로 단계별 실행 계획 제시
|
|
1471
|
+
*/
|
|
1472
|
+
enableChecklist?: boolean;
|
|
1466
1473
|
/**
|
|
1467
1474
|
* @description 커스텀 스킬 등록
|
|
1468
1475
|
* @Todo vibecode - AI가 자동/수동으로 활용하는 스킬 시스템
|
|
@@ -2009,6 +2016,41 @@ interface ChecklistCardProps {
|
|
|
2009
2016
|
/** @Todo vibecode - 체크리스트 카드 컴포넌트 */
|
|
2010
2017
|
declare const ChecklistCard: React$1.FC<ChecklistCardProps>;
|
|
2011
2018
|
|
|
2019
|
+
interface ChecklistMiniIndicatorProps {
|
|
2020
|
+
/** 체크리스트 항목 배열 */
|
|
2021
|
+
items: ChecklistItem[];
|
|
2022
|
+
/** 전체 완료 여부 */
|
|
2023
|
+
completed: boolean;
|
|
2024
|
+
}
|
|
2025
|
+
/** @Todo vibecode - 메시지 버블 내 체크리스트 미니 인디케이터 (한 줄 컴팩트) */
|
|
2026
|
+
declare const ChecklistMiniIndicator: React$1.FC<ChecklistMiniIndicatorProps>;
|
|
2027
|
+
|
|
2028
|
+
/**
|
|
2029
|
+
* @description 체크리스트 우측 패널 컴포넌트
|
|
2030
|
+
* @Todo vibecode - 데스크탑: flex item (360px), 모바일: 슬라이드인 오버레이
|
|
2031
|
+
*/
|
|
2032
|
+
|
|
2033
|
+
interface ChecklistPanelProps {
|
|
2034
|
+
/** @Todo vibecode - 활성 체크리스트가 포함된 메시지 */
|
|
2035
|
+
message: ChatMessage | null;
|
|
2036
|
+
/** 패널 열림 여부 */
|
|
2037
|
+
isOpen: boolean;
|
|
2038
|
+
/** 패널 닫기 */
|
|
2039
|
+
onClose: () => void;
|
|
2040
|
+
/** 체크리스트 중단 */
|
|
2041
|
+
onAbort?: () => void;
|
|
2042
|
+
/** 실패 항목 재시도 */
|
|
2043
|
+
onRetry?: (stepIndex: number) => void;
|
|
2044
|
+
/** 항목 건너뛰기 */
|
|
2045
|
+
onSkip?: (stepIndex: number) => void;
|
|
2046
|
+
/** 패널 너비 (데스크탑) */
|
|
2047
|
+
width?: number | string;
|
|
2048
|
+
/** 모바일 오버레이 모드 */
|
|
2049
|
+
isMobileOverlay?: boolean;
|
|
2050
|
+
}
|
|
2051
|
+
/** @Todo vibecode - 체크리스트 우측 패널 */
|
|
2052
|
+
declare const ChecklistPanel: React$1.FC<ChecklistPanelProps>;
|
|
2053
|
+
|
|
2012
2054
|
/**
|
|
2013
2055
|
* @description 프로젝트 선택 드롭다운 - 사이드바 상단에 배치
|
|
2014
2056
|
* @Todo vibecode - 프로젝트 전환, 생성, 설정 접근
|
|
@@ -2072,4 +2114,4 @@ declare const DEFAULT_PROJECT_TITLE = "\uAE30\uBCF8 \uD504\uB85C\uC81D\uD2B8";
|
|
|
2072
2114
|
*/
|
|
2073
2115
|
declare const migrateSessionsToProjects: (storageKey: string) => void;
|
|
2074
2116
|
|
|
2075
|
-
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, type ChatAttachment, ChatHeader, ChatInput, type ChatMessage, type ChatProject, type ChatSession, ChatSidebar, type ChatToolDefinition, type ChatToolParameter, ChatUI, type ChatUIComponents, type ChatUIProps, type ChecklistBlock, ChecklistCard, type ChecklistCardProps, type ChecklistItem, ContentPartRenderer, type ContentPartRendererProps, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, type InputProps, LinkChip, type LinkChipProps, type ManualSkillItem, MarkdownRenderer, type MarkdownRendererProps, type MemoryItem, MemoryPanel, type MemoryPanelProps, MessageBubble, type MessageBubbleProps, type MessageContentPart, MessageList, type MessageListProps, type ModelConfig, type ModelSelectorProps, type PersonalizationConfig, type PollBlock, PollCard, type PollCardProps, type PollOption, type PollQuestion, type PollResponse, type PollState, type ProjectFile, ProjectSelector, type ProjectSelectorProps, ProjectSettingsModal, type ProjectSettingsModalProps, type PromptTemplate, type ProviderType, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, SettingsModal, type SettingsModalProps, type SettingsTab, type SidebarProps, type SkillConfig, type SkillExecuteCallbacks, type SkillExecution, type SkillExecutionResult, type SkillProgress, SkillProgressUI, type SkillProgressUIProps, type SkillTrigger, type SourceItem, type SubAgentProgress, type SuggestedPrompt, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, convertToolsToSkills, createAdvancedResearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useProject, useSkills };
|
|
2117
|
+
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, type ChatAttachment, ChatHeader, ChatInput, type ChatMessage, type ChatProject, type ChatSession, ChatSidebar, type ChatToolDefinition, type ChatToolParameter, ChatUI, type ChatUIComponents, type ChatUIProps, type ChecklistBlock, ChecklistCard, type ChecklistCardProps, type ChecklistItem, ChecklistMiniIndicator, type ChecklistMiniIndicatorProps, ChecklistPanel, type ChecklistPanelProps, ContentPartRenderer, type ContentPartRendererProps, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, type InputProps, LinkChip, type LinkChipProps, type ManualSkillItem, MarkdownRenderer, type MarkdownRendererProps, type MemoryItem, MemoryPanel, type MemoryPanelProps, MessageBubble, type MessageBubbleProps, type MessageContentPart, MessageList, type MessageListProps, type ModelConfig, type ModelSelectorProps, type PersonalizationConfig, type PollBlock, PollCard, type PollCardProps, type PollOption, type PollQuestion, type PollResponse, type PollState, type ProjectFile, ProjectSelector, type ProjectSelectorProps, ProjectSettingsModal, type ProjectSettingsModalProps, type PromptTemplate, type ProviderType, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, SettingsModal, type SettingsModalProps, type SettingsTab, type SidebarProps, type SkillConfig, type SkillExecuteCallbacks, type SkillExecution, type SkillExecutionResult, type SkillProgress, SkillProgressUI, type SkillProgressUIProps, type SkillTrigger, type SourceItem, type SubAgentProgress, type SuggestedPrompt, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, convertToolsToSkills, createAdvancedResearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useProject, useSkills };
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1332,6 +1332,8 @@ interface UseChatUIReturn {
|
|
|
1332
1332
|
* @Todo vibecode - 항목을 done(건너뜀)으로 마킹 후 다음 단계 진행
|
|
1333
1333
|
*/
|
|
1334
1334
|
handleChecklistSkip: (messageId: string, stepIndex: number) => void;
|
|
1335
|
+
/** @Todo vibecode - 활성 체크리스트가 포함된 메시지 (패널 자동 열기 트리거용) */
|
|
1336
|
+
activeChecklistMessage: ChatMessage | null;
|
|
1335
1337
|
}
|
|
1336
1338
|
|
|
1337
1339
|
/**
|
|
@@ -1463,6 +1465,11 @@ interface UseChatUIOptions {
|
|
|
1463
1465
|
* @Todo vibecode - AI가 자동으로 선택지를 제공하도록 시스템 프롬프트에 가이드 추가
|
|
1464
1466
|
*/
|
|
1465
1467
|
enablePoll?: boolean;
|
|
1468
|
+
/**
|
|
1469
|
+
* @description AI 자동 실행형 체크리스트 기능 활성화 (기본: true)
|
|
1470
|
+
* @Todo vibecode - 복합 작업 시 AI가 <checklist> 태그로 단계별 실행 계획 제시
|
|
1471
|
+
*/
|
|
1472
|
+
enableChecklist?: boolean;
|
|
1466
1473
|
/**
|
|
1467
1474
|
* @description 커스텀 스킬 등록
|
|
1468
1475
|
* @Todo vibecode - AI가 자동/수동으로 활용하는 스킬 시스템
|
|
@@ -2009,6 +2016,41 @@ interface ChecklistCardProps {
|
|
|
2009
2016
|
/** @Todo vibecode - 체크리스트 카드 컴포넌트 */
|
|
2010
2017
|
declare const ChecklistCard: React$1.FC<ChecklistCardProps>;
|
|
2011
2018
|
|
|
2019
|
+
interface ChecklistMiniIndicatorProps {
|
|
2020
|
+
/** 체크리스트 항목 배열 */
|
|
2021
|
+
items: ChecklistItem[];
|
|
2022
|
+
/** 전체 완료 여부 */
|
|
2023
|
+
completed: boolean;
|
|
2024
|
+
}
|
|
2025
|
+
/** @Todo vibecode - 메시지 버블 내 체크리스트 미니 인디케이터 (한 줄 컴팩트) */
|
|
2026
|
+
declare const ChecklistMiniIndicator: React$1.FC<ChecklistMiniIndicatorProps>;
|
|
2027
|
+
|
|
2028
|
+
/**
|
|
2029
|
+
* @description 체크리스트 우측 패널 컴포넌트
|
|
2030
|
+
* @Todo vibecode - 데스크탑: flex item (360px), 모바일: 슬라이드인 오버레이
|
|
2031
|
+
*/
|
|
2032
|
+
|
|
2033
|
+
interface ChecklistPanelProps {
|
|
2034
|
+
/** @Todo vibecode - 활성 체크리스트가 포함된 메시지 */
|
|
2035
|
+
message: ChatMessage | null;
|
|
2036
|
+
/** 패널 열림 여부 */
|
|
2037
|
+
isOpen: boolean;
|
|
2038
|
+
/** 패널 닫기 */
|
|
2039
|
+
onClose: () => void;
|
|
2040
|
+
/** 체크리스트 중단 */
|
|
2041
|
+
onAbort?: () => void;
|
|
2042
|
+
/** 실패 항목 재시도 */
|
|
2043
|
+
onRetry?: (stepIndex: number) => void;
|
|
2044
|
+
/** 항목 건너뛰기 */
|
|
2045
|
+
onSkip?: (stepIndex: number) => void;
|
|
2046
|
+
/** 패널 너비 (데스크탑) */
|
|
2047
|
+
width?: number | string;
|
|
2048
|
+
/** 모바일 오버레이 모드 */
|
|
2049
|
+
isMobileOverlay?: boolean;
|
|
2050
|
+
}
|
|
2051
|
+
/** @Todo vibecode - 체크리스트 우측 패널 */
|
|
2052
|
+
declare const ChecklistPanel: React$1.FC<ChecklistPanelProps>;
|
|
2053
|
+
|
|
2012
2054
|
/**
|
|
2013
2055
|
* @description 프로젝트 선택 드롭다운 - 사이드바 상단에 배치
|
|
2014
2056
|
* @Todo vibecode - 프로젝트 전환, 생성, 설정 접근
|
|
@@ -2072,4 +2114,4 @@ declare const DEFAULT_PROJECT_TITLE = "\uAE30\uBCF8 \uD504\uB85C\uC81D\uD2B8";
|
|
|
2072
2114
|
*/
|
|
2073
2115
|
declare const migrateSessionsToProjects: (storageKey: string) => void;
|
|
2074
2116
|
|
|
2075
|
-
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, type ChatAttachment, ChatHeader, ChatInput, type ChatMessage, type ChatProject, type ChatSession, ChatSidebar, type ChatToolDefinition, type ChatToolParameter, ChatUI, type ChatUIComponents, type ChatUIProps, type ChecklistBlock, ChecklistCard, type ChecklistCardProps, type ChecklistItem, ContentPartRenderer, type ContentPartRendererProps, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, type InputProps, LinkChip, type LinkChipProps, type ManualSkillItem, MarkdownRenderer, type MarkdownRendererProps, type MemoryItem, MemoryPanel, type MemoryPanelProps, MessageBubble, type MessageBubbleProps, type MessageContentPart, MessageList, type MessageListProps, type ModelConfig, type ModelSelectorProps, type PersonalizationConfig, type PollBlock, PollCard, type PollCardProps, type PollOption, type PollQuestion, type PollResponse, type PollState, type ProjectFile, ProjectSelector, type ProjectSelectorProps, ProjectSettingsModal, type ProjectSettingsModalProps, type PromptTemplate, type ProviderType, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, SettingsModal, type SettingsModalProps, type SettingsTab, type SidebarProps, type SkillConfig, type SkillExecuteCallbacks, type SkillExecution, type SkillExecutionResult, type SkillProgress, SkillProgressUI, type SkillProgressUIProps, type SkillTrigger, type SourceItem, type SubAgentProgress, type SuggestedPrompt, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, convertToolsToSkills, createAdvancedResearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useProject, useSkills };
|
|
2117
|
+
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, type ChatAttachment, ChatHeader, ChatInput, type ChatMessage, type ChatProject, type ChatSession, ChatSidebar, type ChatToolDefinition, type ChatToolParameter, ChatUI, type ChatUIComponents, type ChatUIProps, type ChecklistBlock, ChecklistCard, type ChecklistCardProps, type ChecklistItem, ChecklistMiniIndicator, type ChecklistMiniIndicatorProps, ChecklistPanel, type ChecklistPanelProps, ContentPartRenderer, type ContentPartRendererProps, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, type InputProps, LinkChip, type LinkChipProps, type ManualSkillItem, MarkdownRenderer, type MarkdownRendererProps, type MemoryItem, MemoryPanel, type MemoryPanelProps, MessageBubble, type MessageBubbleProps, type MessageContentPart, MessageList, type MessageListProps, type ModelConfig, type ModelSelectorProps, type PersonalizationConfig, type PollBlock, PollCard, type PollCardProps, type PollOption, type PollQuestion, type PollResponse, type PollState, type ProjectFile, ProjectSelector, type ProjectSelectorProps, ProjectSettingsModal, type ProjectSettingsModalProps, type PromptTemplate, type ProviderType, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, SettingsModal, type SettingsModalProps, type SettingsTab, type SidebarProps, type SkillConfig, type SkillExecuteCallbacks, type SkillExecution, type SkillExecutionResult, type SkillProgress, SkillProgressUI, type SkillProgressUIProps, type SkillTrigger, type SourceItem, type SubAgentProgress, type SuggestedPrompt, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, convertToolsToSkills, createAdvancedResearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useProject, useSkills };
|