bajaclaw 0.14.23 → 0.14.24

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 CHANGED
@@ -7,7 +7,7 @@
7
7
  ██╔══██╗██╔══██║██ ██║██╔══██║ ██║ ██║ ██╔══██║██║███╗██║
8
8
  ██████╔╝██║ ██║╚█████╔╝██║ ██║ ╚██████╗███████╗██║ ██║╚███╔███╔╝
9
9
  ╚═════╝ ╚═╝ ╚═╝ ╚════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝
10
- autonomous agents on your terms · MIT · v0.14.23
10
+ autonomous agents on your terms · MIT · v0.14.24
11
11
  ```
12
12
 
13
13
  ## What BajaClaw is
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import type { AgentConfig } from "../types.js";
3
+ export interface ChatAppProps {
4
+ profile: string;
5
+ cfg: AgentConfig;
6
+ agentName: string;
7
+ initialModelOverride?: string;
8
+ }
9
+ export declare function ChatApp({ profile, cfg: initialCfg, agentName, initialModelOverride, }: ChatAppProps): React.ReactElement;