@tyvm/knowhow 0.0.46 → 0.0.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tyvm/knowhow",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "description": "ai cli with plugins and agents",
5
5
  "main": "ts_build/src/index.js",
6
6
  "bin": {
@@ -4,7 +4,7 @@ export type MessageContent =
4
4
 
5
5
  export interface Message {
6
6
  role: "system" | "user" | "assistant" | "tool";
7
- content: string | MessageContent[];
7
+ content?: string | MessageContent[];
8
8
 
9
9
  name?: string;
10
10
  tool_call_id?: string;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tyvm/knowhow",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "description": "ai cli with plugins and agents",
5
5
  "main": "ts_build/src/index.js",
6
6
  "bin": {
@@ -9,7 +9,7 @@ export type MessageContent = {
9
9
  };
10
10
  export interface Message {
11
11
  role: "system" | "user" | "assistant" | "tool";
12
- content: string | MessageContent[];
12
+ content?: string | MessageContent[];
13
13
  name?: string;
14
14
  tool_call_id?: string;
15
15
  tool_calls?: ToolCall[];