oh-my-opencode-gpt-slim 0.1.2 → 0.1.4

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.
@@ -17,6 +17,8 @@ export interface EventState {
17
17
  currentModel: string | null;
18
18
  /** Current model variant from the latest assistant message */
19
19
  currentVariant: string | null;
20
+ /** Current model reasoning effort from the latest assistant message */
21
+ currentReasoningEffort: string | null;
20
22
  /** Current message role (user/assistant) — used to filter user messages from display */
21
23
  currentMessageRole: string | null;
22
24
  /** Agent profile colors keyed by display name */
@@ -1,4 +1,5 @@
1
- export declare function renderAgentHeader(agent: string | null, model: string | null, variant: string | null, agentColorsByName: Record<string, string>): void;
1
+ export declare function renderAgentHeader(agent: string | null, model: string | null, variant: string | null, reasoningEffort: string | null, agentColorsByName: Record<string, string>): void;
2
+ export declare function formatModelDetails(variant: string | null, reasoningEffort: string | null): string;
2
3
  export declare function openThinkBlock(): void;
3
4
  export declare function closeThinkBlock(): void;
4
5
  export declare function writePaddedText(text: string, atLineStart: boolean): {
@@ -68,6 +68,7 @@ export interface MessageUpdatedProps {
68
68
  providerID?: string;
69
69
  agent?: string;
70
70
  variant?: string;
71
+ reasoningEffort?: string;
71
72
  };
72
73
  }
73
74
  export interface MessagePartUpdatedProps {