@athenaintel/react 0.6.3 → 0.6.6

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/index.d.ts CHANGED
@@ -72,6 +72,8 @@ export declare interface AthenaChatProps {
72
72
  toolUIs?: Record<string, ToolCallMessagePartComponent>;
73
73
  /** Mention tools available in the composer. */
74
74
  mentionTools?: MentionTool[];
75
+ /** Suggestion cards shown on the welcome screen. Pass `[]` to hide. */
76
+ welcomeSuggestions?: WelcomeSuggestion[];
75
77
  }
76
78
 
77
79
  export declare interface AthenaConfig {
@@ -105,7 +107,7 @@ export declare interface AthenaProviderProps {
105
107
  token?: string;
106
108
  /** Agent name to use. Defaults to 'athena_assist_agent'. */
107
109
  agent?: string;
108
- /** LLM model identifier. Defaults to 'claude-sonnet-4-6-low'. */
110
+ /** LLM model identifier. Defaults to 'claude-opus-4-6-thinking-max-fast'. */
109
111
  model?: string;
110
112
  /** Backend toolkit IDs to enable (e.g. 'document_toolkit', 'web_search_browse_toolkit'). */
111
113
  tools?: string[];
@@ -750,4 +752,10 @@ export declare type ViewMode = 'tabs' | 'tiled';
750
752
 
751
753
  export declare const WebSearchToolUI: ToolCallMessagePartComponent;
752
754
 
755
+ export declare interface WelcomeSuggestion {
756
+ icon: React.ElementType;
757
+ title: string;
758
+ prompt: string;
759
+ }
760
+
753
761
  export { }