openfox 2.0.62 → 2.0.64
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/README.md +14 -0
- package/dist/{chat-handler-TRAITVLO.js → chat-handler-LI4R4Z2E.js} +11 -11
- package/dist/{chunk-L4WACPUX.js → chunk-73N5CJH3.js} +5 -5
- package/dist/{chunk-BKTBHEPY.js → chunk-HZNY77HZ.js} +32 -42
- package/dist/{chunk-QZRS2RF5.js → chunk-JFQSQO2N.js} +362 -92
- package/dist/{chunk-3WL5YCP6.js → chunk-O3G6X5CT.js} +6 -6
- package/dist/{chunk-GJU35MDV.js → chunk-OESYKZCM.js} +2 -2
- package/dist/{chunk-JKLPWTUN.js → chunk-QBYQ7KDX.js} +9 -4
- package/dist/{chunk-NVPVDDQZ.js → chunk-QJ5FH5DP.js} +14 -10
- package/dist/{chunk-H774GQJW.js → chunk-RYIREJAW.js} +234 -40
- package/dist/{chunk-WEB4WBUF.js → chunk-WD75RSGR.js} +149 -117
- package/dist/{chunk-43UFGATL.js → chunk-WGAAQASA.js} +31 -9
- package/dist/{chunk-6VDCH5ML.js → chunk-X5YCWKNS.js} +4 -4
- package/dist/cli/dev.js +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/{client-KRFGMNGN.js → client-LAKW7TA5.js} +3 -3
- package/dist/{compactor-Q33AJPCQ.js → compactor-I3N56PSJ.js} +4 -4
- package/dist/{config-GMQUPNBY.js → config-EUMVEFHU.js} +2 -2
- package/dist/{orchestrator-TQ23BAFQ.js → orchestrator-PFN7C5JI.js} +14 -14
- package/dist/package.json +5 -1
- package/dist/{processor-3ZOFGZP5.js → processor-AYYXP5NS.js} +13 -12
- package/dist/protocol-Cq66hdDX.d.ts +375 -0
- package/dist/provider/index.d.ts +129 -0
- package/dist/provider/index.js +1 -0
- package/dist/{provider-LBYBC5AG.js → provider-GYOW4OWQ.js} +7 -9
- package/dist/{provider-manager-ABEUYU3K.js → provider-manager-HRHNF73A.js} +4 -5
- package/dist/{serve-CNA5NKOR.js → serve-54KALE6R.js} +15 -16
- package/dist/server/index.d.ts +6 -87
- package/dist/server/index.js +12 -13
- package/dist/{server-CI5IEBOC.js → server-Z2A5YZM6.js} +10 -14
- package/dist/shared/index.d.ts +3 -2
- package/dist/{tools-33FQNFKC.js → tools-R6LPK6OS.js} +7 -7
- package/dist/types-CDZakn7f.d.ts +89 -0
- package/dist/{protocol-J7khRG62.d.ts → types-akHmgvBk.d.ts} +17 -373
- package/dist/web/assets/{index-CETZPQXr.js → index-CkE65FP4.js} +74 -73
- package/dist/web/assets/{index-BGkyTfuQ.css → index-DvPmgi8F.css} +1 -1
- package/dist/web/index.html +2 -2
- package/dist/web/sw.js +1 -1
- package/package.json +5 -1
- package/dist/chunk-M3RB4IF6.js +0 -114
|
@@ -400,6 +400,14 @@ type ProviderBackend = LlmBackend | 'openai' | 'anthropic';
|
|
|
400
400
|
/** Model configuration with context window */
|
|
401
401
|
interface ModelConfig {
|
|
402
402
|
id: string;
|
|
403
|
+
/** Human-readable model name from the provider catalog. */
|
|
404
|
+
name?: string;
|
|
405
|
+
/** Actual model ID sent to the provider when `id` is a projected catalog mode. */
|
|
406
|
+
apiModelId?: string;
|
|
407
|
+
/** Extra top-level request body fields attached to this catalog model/mode. */
|
|
408
|
+
requestBody?: Record<string, unknown>;
|
|
409
|
+
/** Reasoning effort values advertised by the provider catalog. */
|
|
410
|
+
reasoningEfforts?: string[];
|
|
403
411
|
contextWindow: number;
|
|
404
412
|
source: 'backend' | 'user' | 'default';
|
|
405
413
|
selected?: boolean;
|
|
@@ -423,10 +431,18 @@ interface ModelConfig {
|
|
|
423
431
|
/** LLM provider configuration */
|
|
424
432
|
interface Provider {
|
|
425
433
|
id: string;
|
|
434
|
+
/** Plugin preset used to hydrate omitted provider fields. */
|
|
435
|
+
preset?: string;
|
|
426
436
|
name: string;
|
|
427
437
|
url: string;
|
|
428
438
|
backend: ProviderBackend;
|
|
429
439
|
apiKey?: string | undefined;
|
|
440
|
+
/** Registered auth adapter id. Credentials are stored separately. */
|
|
441
|
+
authAdapter?: string;
|
|
442
|
+
/** Registered transport adapter id. Defaults to OpenAI-compatible HTTP. */
|
|
443
|
+
transportAdapter?: string;
|
|
444
|
+
/** Opaque reference into the credential store. Never contains a token. */
|
|
445
|
+
credentialRef?: string;
|
|
430
446
|
models: ModelConfig[];
|
|
431
447
|
isActive: boolean;
|
|
432
448
|
createdAt: string;
|
|
@@ -521,376 +537,4 @@ interface ElementData {
|
|
|
521
537
|
attributes: Record<string, string>;
|
|
522
538
|
}
|
|
523
539
|
|
|
524
|
-
type
|
|
525
|
-
interface ClientMessage<T = unknown> {
|
|
526
|
-
id: string;
|
|
527
|
-
type: ClientMessageType;
|
|
528
|
-
payload: T;
|
|
529
|
-
}
|
|
530
|
-
interface SessionLoadPayload {
|
|
531
|
-
sessionId: string;
|
|
532
|
-
lastEventSeq?: number;
|
|
533
|
-
}
|
|
534
|
-
interface AskAnswerPayload {
|
|
535
|
-
callId: string;
|
|
536
|
-
answer: string;
|
|
537
|
-
skip?: boolean;
|
|
538
|
-
}
|
|
539
|
-
interface QueuedMessage {
|
|
540
|
-
queueId: string;
|
|
541
|
-
mode: 'asap' | 'completion';
|
|
542
|
-
content: string;
|
|
543
|
-
attachments?: Attachment[];
|
|
544
|
-
queuedAt: string;
|
|
545
|
-
messageKind?: string;
|
|
546
|
-
}
|
|
547
|
-
type ServerMessageType = 'project.state' | 'project.list' | 'project.deleted' | 'session.state' | 'session.list' | 'session.deleted' | 'session.deletedAll' | 'session.running' | 'session.name_generated' | 'chat.delta' | 'chat.thinking' | 'chat.tool_preparing' | 'chat.tool_call' | 'chat.tool_output' | 'chat.tool_result' | 'chat.todo' | 'chat.progress' | 'chat.format_retry' | 'chat.message' | 'chat.message_updated' | 'chat.done' | 'chat.vision_fallback' | 'chat.error' | 'chat.path_confirmation' | 'chat.ask_user' | 'mode.changed' | 'phase.changed' | 'task.completed' | 'criteria.updated' | 'metadata.updated' | 'context.state' | 'settings.value' | 'provider.changed' | 'queue.state' | 'devServer.output' | 'devServer.state' | 'backgroundProcess.started' | 'backgroundProcess.output' | 'backgroundProcess.exited' | 'backgroundProcess.removed' | 'git.status' | 'mcp.servers.changed' | 'lsp.diagnostics' | 'error' | 'ack';
|
|
548
|
-
interface ServerMessage<T = unknown> {
|
|
549
|
-
id?: string;
|
|
550
|
-
type: ServerMessageType;
|
|
551
|
-
payload: T;
|
|
552
|
-
seq?: number;
|
|
553
|
-
sessionId?: string;
|
|
554
|
-
}
|
|
555
|
-
interface ProjectStatePayload {
|
|
556
|
-
project: Project;
|
|
557
|
-
}
|
|
558
|
-
interface ProjectListPayload {
|
|
559
|
-
projects: Project[];
|
|
560
|
-
}
|
|
561
|
-
interface ProjectDeletedPayload {
|
|
562
|
-
projectId: string;
|
|
563
|
-
}
|
|
564
|
-
interface PendingQuestionPayload {
|
|
565
|
-
callId: string;
|
|
566
|
-
question: string;
|
|
567
|
-
type: 'text' | 'confirm' | 'choice';
|
|
568
|
-
options: string[] | undefined;
|
|
569
|
-
}
|
|
570
|
-
interface SessionStatePayload {
|
|
571
|
-
session: Session;
|
|
572
|
-
messages: Message[];
|
|
573
|
-
pendingConfirmations: PendingPathConfirmationPayload[];
|
|
574
|
-
pendingQuestions?: PendingQuestionPayload[];
|
|
575
|
-
gitStatus?: GitStatusPayload;
|
|
576
|
-
}
|
|
577
|
-
interface PendingPathConfirmationPayload {
|
|
578
|
-
callId: string;
|
|
579
|
-
tool: string;
|
|
580
|
-
paths: string[];
|
|
581
|
-
workdir: string;
|
|
582
|
-
reason: 'outside_workdir' | 'sensitive_file' | 'both' | 'dangerous_command' | 'git_no_verify';
|
|
583
|
-
}
|
|
584
|
-
interface SessionListPayload {
|
|
585
|
-
sessions: SessionSummary[];
|
|
586
|
-
}
|
|
587
|
-
interface SessionRunningPayload {
|
|
588
|
-
isRunning: boolean;
|
|
589
|
-
}
|
|
590
|
-
interface SessionNameGeneratedPayload {
|
|
591
|
-
name: string;
|
|
592
|
-
}
|
|
593
|
-
interface ChatDeltaPayload {
|
|
594
|
-
messageId: string;
|
|
595
|
-
content: string;
|
|
596
|
-
subAgentType?: string;
|
|
597
|
-
}
|
|
598
|
-
interface ChatThinkingPayload {
|
|
599
|
-
messageId: string;
|
|
600
|
-
content: string;
|
|
601
|
-
}
|
|
602
|
-
interface ChatToolPreparingPayload {
|
|
603
|
-
messageId: string;
|
|
604
|
-
index: number;
|
|
605
|
-
name: string;
|
|
606
|
-
arguments?: string;
|
|
607
|
-
}
|
|
608
|
-
interface ChatToolCallPayload {
|
|
609
|
-
messageId: string;
|
|
610
|
-
callId: string;
|
|
611
|
-
tool: string;
|
|
612
|
-
args: Record<string, unknown>;
|
|
613
|
-
}
|
|
614
|
-
interface ChatToolResultPayload {
|
|
615
|
-
messageId: string;
|
|
616
|
-
callId: string;
|
|
617
|
-
tool: string;
|
|
618
|
-
result: ToolResult;
|
|
619
|
-
}
|
|
620
|
-
interface ChatToolOutputPayload {
|
|
621
|
-
messageId: string;
|
|
622
|
-
callId: string;
|
|
623
|
-
output: string;
|
|
624
|
-
stream: 'stdout' | 'stderr';
|
|
625
|
-
}
|
|
626
|
-
interface ChatTodoPayload {
|
|
627
|
-
todos: Todo[];
|
|
628
|
-
}
|
|
629
|
-
interface ChatProgressPayload {
|
|
630
|
-
message: string;
|
|
631
|
-
phase?: 'summary' | 'mode_switch' | 'starting' | 'context_warning' | 'context_error';
|
|
632
|
-
}
|
|
633
|
-
interface ChatFormatRetryPayload {
|
|
634
|
-
attempt: number;
|
|
635
|
-
maxAttempts: number;
|
|
636
|
-
pattern?: string;
|
|
637
|
-
field?: string;
|
|
638
|
-
matchedContent?: string;
|
|
639
|
-
}
|
|
640
|
-
interface ChatVisionFallbackPayload {
|
|
641
|
-
type: 'start' | 'done';
|
|
642
|
-
messageId: string;
|
|
643
|
-
attachmentId: string;
|
|
644
|
-
filename?: string;
|
|
645
|
-
description?: string;
|
|
646
|
-
}
|
|
647
|
-
interface ChatMessagePayload {
|
|
648
|
-
message: Message;
|
|
649
|
-
}
|
|
650
|
-
interface ChatMessageUpdatedPayload {
|
|
651
|
-
messageId: string;
|
|
652
|
-
updates: Partial<Pick<Message, 'content' | 'thinkingContent' | 'toolCalls' | 'isStreaming' | 'stats' | 'partial'>>;
|
|
653
|
-
}
|
|
654
|
-
interface ChatDonePayload {
|
|
655
|
-
messageId: string;
|
|
656
|
-
reason: 'complete' | 'stopped' | 'error' | 'waiting_for_user' | 'truncated' | 'step_done';
|
|
657
|
-
agentType?: 'sub-agent';
|
|
658
|
-
stats?: {
|
|
659
|
-
model: string;
|
|
660
|
-
mode: ToolMode;
|
|
661
|
-
totalTime: number;
|
|
662
|
-
toolTime: number;
|
|
663
|
-
prefillTokens: number;
|
|
664
|
-
prefillSpeed: number;
|
|
665
|
-
generationTokens: number;
|
|
666
|
-
generationSpeed: number;
|
|
667
|
-
};
|
|
668
|
-
}
|
|
669
|
-
interface ChatErrorPayload {
|
|
670
|
-
error: string;
|
|
671
|
-
recoverable: boolean;
|
|
672
|
-
}
|
|
673
|
-
type PathConfirmationReason = 'outside_workdir' | 'sensitive_file' | 'both' | 'dangerous_command' | 'git_no_verify';
|
|
674
|
-
interface ChatPathConfirmationPayload {
|
|
675
|
-
callId: string;
|
|
676
|
-
tool: string;
|
|
677
|
-
paths: string[];
|
|
678
|
-
workdir: string;
|
|
679
|
-
reason: PathConfirmationReason;
|
|
680
|
-
}
|
|
681
|
-
interface PathConfirmPayload {
|
|
682
|
-
callId: string;
|
|
683
|
-
approved: boolean;
|
|
684
|
-
alwaysAllow?: boolean;
|
|
685
|
-
}
|
|
686
|
-
interface ChatAskUserPayload {
|
|
687
|
-
callId: string;
|
|
688
|
-
question: string;
|
|
689
|
-
type: 'text' | 'confirm' | 'choice' | undefined;
|
|
690
|
-
options: string[] | undefined;
|
|
691
|
-
}
|
|
692
|
-
interface ModeChangedPayload {
|
|
693
|
-
mode: SessionMode;
|
|
694
|
-
auto: boolean;
|
|
695
|
-
reason?: string;
|
|
696
|
-
}
|
|
697
|
-
interface PhaseChangedPayload {
|
|
698
|
-
phase: SessionPhase;
|
|
699
|
-
}
|
|
700
|
-
interface TaskCompletedPayload {
|
|
701
|
-
summary: string | null;
|
|
702
|
-
iterations: number;
|
|
703
|
-
totalTimeSeconds: number;
|
|
704
|
-
totalToolCalls: number;
|
|
705
|
-
totalTokensGenerated: number;
|
|
706
|
-
avgGenerationSpeed: number;
|
|
707
|
-
responseCount: number;
|
|
708
|
-
llmCallCount: number;
|
|
709
|
-
criteria: Array<{
|
|
710
|
-
id: string;
|
|
711
|
-
description: string;
|
|
712
|
-
status: string;
|
|
713
|
-
}>;
|
|
714
|
-
workflowName?: string;
|
|
715
|
-
workflowId?: string;
|
|
716
|
-
workflowColor?: string;
|
|
717
|
-
}
|
|
718
|
-
interface CriteriaUpdatedPayload {
|
|
719
|
-
criteria: Criterion[];
|
|
720
|
-
changedId?: string;
|
|
721
|
-
}
|
|
722
|
-
interface MetadataUpdatedPayload {
|
|
723
|
-
key: string;
|
|
724
|
-
entries: MetadataEntry[];
|
|
725
|
-
}
|
|
726
|
-
interface ContextStatePayload {
|
|
727
|
-
context: ContextState;
|
|
728
|
-
subAgentId?: string;
|
|
729
|
-
}
|
|
730
|
-
interface ProviderChangedPayload {
|
|
731
|
-
providerId: string;
|
|
732
|
-
providerName: string;
|
|
733
|
-
model: string;
|
|
734
|
-
backend: string;
|
|
735
|
-
}
|
|
736
|
-
interface QueueStatePayload {
|
|
737
|
-
messages: QueuedMessage[];
|
|
738
|
-
}
|
|
739
|
-
interface DevServerOutputPayload {
|
|
740
|
-
workdir: string;
|
|
741
|
-
stream: 'stdout' | 'stderr';
|
|
742
|
-
content: string;
|
|
743
|
-
}
|
|
744
|
-
interface DevServerStatePayload {
|
|
745
|
-
workdir: string;
|
|
746
|
-
state: 'off' | 'running' | 'warning' | 'error';
|
|
747
|
-
errorMessage?: string;
|
|
748
|
-
}
|
|
749
|
-
interface BackgroundProcessStartedPayload {
|
|
750
|
-
processId: string;
|
|
751
|
-
name: string;
|
|
752
|
-
pid: number;
|
|
753
|
-
status: BackgroundProcessStatus;
|
|
754
|
-
}
|
|
755
|
-
interface BackgroundProcessOutputPayload {
|
|
756
|
-
processId: string;
|
|
757
|
-
stream: 'stdout' | 'stderr';
|
|
758
|
-
content: string;
|
|
759
|
-
}
|
|
760
|
-
interface BackgroundProcessExitedPayload {
|
|
761
|
-
processId: string;
|
|
762
|
-
exitCode: number | null;
|
|
763
|
-
}
|
|
764
|
-
interface BackgroundProcessRemovedPayload {
|
|
765
|
-
processId: string;
|
|
766
|
-
}
|
|
767
|
-
interface GitStatusPayload {
|
|
768
|
-
branch: string | null;
|
|
769
|
-
diff: {
|
|
770
|
-
files: GitDiffFile[];
|
|
771
|
-
};
|
|
772
|
-
}
|
|
773
|
-
interface GitDiffFile {
|
|
774
|
-
path: string;
|
|
775
|
-
status: 'modified' | 'added' | 'deleted';
|
|
776
|
-
additions: number;
|
|
777
|
-
deletions: number;
|
|
778
|
-
}
|
|
779
|
-
type BackgroundProcessStatus = 'pending' | 'starting' | 'running' | 'stopping' | 'exited';
|
|
780
|
-
interface BackgroundProcess {
|
|
781
|
-
id: string;
|
|
782
|
-
sessionId: string;
|
|
783
|
-
name: string;
|
|
784
|
-
command: string;
|
|
785
|
-
cwd: string;
|
|
786
|
-
pid: number | null;
|
|
787
|
-
status: BackgroundProcessStatus;
|
|
788
|
-
exitCode: number | null;
|
|
789
|
-
createdAt: number;
|
|
790
|
-
startedAt: number | null;
|
|
791
|
-
endedAt: number | null;
|
|
792
|
-
}
|
|
793
|
-
interface LogLine {
|
|
794
|
-
offset: number;
|
|
795
|
-
content: string;
|
|
796
|
-
timestamp: number;
|
|
797
|
-
stream: 'stdout' | 'stderr';
|
|
798
|
-
}
|
|
799
|
-
interface LspDiagnosticsPayload {
|
|
800
|
-
path: string;
|
|
801
|
-
diagnostics: Diagnostic[];
|
|
802
|
-
}
|
|
803
|
-
interface ErrorPayload {
|
|
804
|
-
code: string;
|
|
805
|
-
message: string;
|
|
806
|
-
details?: unknown;
|
|
807
|
-
}
|
|
808
|
-
interface ContextCompactionEvent {
|
|
809
|
-
beforeTokens: number;
|
|
810
|
-
afterTokens: number;
|
|
811
|
-
}
|
|
812
|
-
interface AskUserEvent {
|
|
813
|
-
question: string;
|
|
814
|
-
callId: string;
|
|
815
|
-
}
|
|
816
|
-
type AgentEvent = {
|
|
817
|
-
type: 'aborted';
|
|
818
|
-
} | {
|
|
819
|
-
type: 'text_delta';
|
|
820
|
-
content: string;
|
|
821
|
-
} | {
|
|
822
|
-
type: 'thinking';
|
|
823
|
-
content: string;
|
|
824
|
-
} | {
|
|
825
|
-
type: 'error';
|
|
826
|
-
error: string;
|
|
827
|
-
recoverable: boolean;
|
|
828
|
-
} | {
|
|
829
|
-
type: 'context_compaction';
|
|
830
|
-
beforeTokens: number;
|
|
831
|
-
afterTokens: number;
|
|
832
|
-
} | {
|
|
833
|
-
type: 'done';
|
|
834
|
-
allCriteriaPassed: boolean;
|
|
835
|
-
summary: string;
|
|
836
|
-
stats: ChatDonePayload['stats'];
|
|
837
|
-
} | {
|
|
838
|
-
type: 'stuck';
|
|
839
|
-
reason: string;
|
|
840
|
-
failedAttempts: number;
|
|
841
|
-
} | {
|
|
842
|
-
type: 'tool_call';
|
|
843
|
-
callId: string;
|
|
844
|
-
tool: string;
|
|
845
|
-
args: Record<string, unknown>;
|
|
846
|
-
} | {
|
|
847
|
-
type: 'tool_result';
|
|
848
|
-
callId: string;
|
|
849
|
-
tool: string;
|
|
850
|
-
result: ToolResult;
|
|
851
|
-
} | {
|
|
852
|
-
type: 'tool_error';
|
|
853
|
-
callId: string;
|
|
854
|
-
tool: string;
|
|
855
|
-
error: string;
|
|
856
|
-
willRetry: boolean;
|
|
857
|
-
} | {
|
|
858
|
-
type: 'ask_user';
|
|
859
|
-
question: string;
|
|
860
|
-
callId: string;
|
|
861
|
-
} | {
|
|
862
|
-
type: 'format_retry';
|
|
863
|
-
attempt: number;
|
|
864
|
-
maxAttempts: number;
|
|
865
|
-
};
|
|
866
|
-
declare function createClientMessage<T>(type: ClientMessageType, payload: T): ClientMessage<T>;
|
|
867
|
-
declare function createServerMessage<T>(type: ServerMessageType, payload: T, correlationId?: string): ServerMessage<T>;
|
|
868
|
-
declare function isClientMessage(msg: unknown): msg is ClientMessage;
|
|
869
|
-
declare function isServerMessage(msg: unknown): msg is ServerMessage;
|
|
870
|
-
type QueueEventType = 'queue.added' | 'queue.drained' | 'queue.cancelled';
|
|
871
|
-
interface QueueAddedEvent {
|
|
872
|
-
type: 'queue.added';
|
|
873
|
-
data: {
|
|
874
|
-
queueId: string;
|
|
875
|
-
mode: 'asap' | 'completion';
|
|
876
|
-
content: string;
|
|
877
|
-
attachments?: Attachment[];
|
|
878
|
-
messageKind?: string;
|
|
879
|
-
queuedAt: string;
|
|
880
|
-
};
|
|
881
|
-
}
|
|
882
|
-
interface QueueDrainedEvent {
|
|
883
|
-
type: 'queue.drained';
|
|
884
|
-
data: {
|
|
885
|
-
queueId: string;
|
|
886
|
-
};
|
|
887
|
-
}
|
|
888
|
-
interface QueueCancelledEvent {
|
|
889
|
-
type: 'queue.cancelled';
|
|
890
|
-
data: {
|
|
891
|
-
queueId: string;
|
|
892
|
-
};
|
|
893
|
-
}
|
|
894
|
-
type QueueEvent = QueueAddedEvent | QueueDrainedEvent | QueueCancelledEvent;
|
|
895
|
-
|
|
896
|
-
export { type GitStatusPayload as $, type AgentEvent as A, type BackgroundProcess as B, type CallStatsDataPoint as C, type Config as D, type ContextCompactionEvent as E, type ContextState as F, type ContextStatePayload as G, type ContextWindow as H, type CriteriaUpdatedPayload as I, type Criterion as J, type CriterionAttempt as K, type CriterionStatus as L, type Message as M, type CriterionValidation as N, type DangerLevel as O, type DevServerOutputPayload as P, type DevServerStatePayload as Q, type Diagnostic as R, type SessionStats as S, type EditContextEdit as T, type EditContextLine as U, type EditContextRegion as V, type ElementData as W, type ErrorPayload as X, type ExecutionState as Y, type FileReadEntry as Z, type GitDiffFile as _, type AskAnswerPayload as a, type InjectedFile as a0, type LLMCallStats as a1, type LlmBackend as a2, type LogLine as a3, type LspDiagnosticsPayload as a4, type MessageRole as a5, type MessageSegment as a6, type MessageStats as a7, type MetadataEntry as a8, type MetadataUpdatedPayload as a9, type Session as aA, type SessionListPayload as aB, type SessionLoadPayload as aC, type SessionMetadata as aD, type SessionMode as aE, type SessionNameGeneratedPayload as aF, type SessionPhase as aG, type SessionRunningPayload as aH, type SessionStatePayload as aI, type SessionSummary as aJ, type StatsDataPoint as aK, type StatsIdentity as aL, type TaskCompletedPayload as aM, type Todo as aN, type ToolCall as aO, type ToolMode as aP, type ToolName as aQ, type ToolResult as aR, type ValidationResult as aS, createClientMessage as aT, createServerMessage as aU, isClientMessage as aV, isServerMessage as aW, type ModeChangedPayload as aa, type ModelConfig as ab, type ModelSessionStats as ac, type PathConfirmPayload as ad, type PathConfirmationReason as ae, type PendingPathConfirmationPayload as af, type PendingQuestionPayload as ag, type PhaseChangedPayload as ah, type PreparingToolCall as ai, type Project as aj, type ProjectDeletedPayload as ak, type ProjectListPayload as al, type ProjectStatePayload as am, type Provider as an, type ProviderBackend as ao, type ProviderChangedPayload as ap, type QueueAddedEvent as aq, type QueueCancelledEvent as ar, type QueueDrainedEvent as as, type QueueEvent as at, type QueueEventType as au, type QueueStatePayload as av, type QueuedMessage as aw, type RecentUserPrompt as ax, type ServerMessage as ay, type ServerMessageType as az, type AskUserEvent as b, type Attachment as c, type BackgroundProcessExitedPayload as d, type BackgroundProcessOutputPayload as e, type BackgroundProcessRemovedPayload as f, type BackgroundProcessStartedPayload as g, type BackgroundProcessStatus as h, type ChatAskUserPayload as i, type ChatDeltaPayload as j, type ChatDonePayload as k, type ChatErrorPayload as l, type ChatFormatRetryPayload as m, type ChatMessagePayload as n, type ChatMessageUpdatedPayload as o, type ChatPathConfirmationPayload as p, type ChatProgressPayload as q, type ChatThinkingPayload as r, type ChatTodoPayload as s, type ChatToolCallPayload as t, type ChatToolOutputPayload as u, type ChatToolPreparingPayload as v, type ChatToolResultPayload as w, type ChatVisionFallbackPayload as x, type ClientMessage as y, type ClientMessageType as z };
|
|
540
|
+
export type { Attachment as A, SessionSummary as B, CallStatsDataPoint as C, DangerLevel as D, EditContextEdit as E, FileReadEntry as F, StatsDataPoint as G, StatsIdentity as H, InjectedFile as I, ToolCall as J, ToolMode as K, LLMCallStats as L, Message as M, ToolName as N, ToolResult as O, PreparingToolCall as P, RecentUserPrompt as R, SessionStats as S, Todo as T, ValidationResult as V, Config as a, ContextState as b, ContextWindow as c, Criterion as d, CriterionAttempt as e, CriterionStatus as f, CriterionValidation as g, Diagnostic as h, EditContextLine as i, EditContextRegion as j, ElementData as k, ExecutionState as l, LlmBackend as m, MessageRole as n, MessageSegment as o, MessageStats as p, MetadataEntry as q, ModelConfig as r, ModelSessionStats as s, Project as t, Provider as u, ProviderBackend as v, Session as w, SessionMetadata as x, SessionMode as y, SessionPhase as z };
|