@agenite/llm
Advanced tools
+6
-0
| # @agenite/llm | ||
| ## 0.1.3 | ||
| ### Patch Changes | ||
| - b1072d0: Add agent and tool packages to build AI agents | ||
| ## 0.1.2 | ||
@@ -4,0 +10,0 @@ |
+7
-9
@@ -113,14 +113,12 @@ /** | ||
| } | ||
| /** | ||
| * Tool definition interface | ||
| */ | ||
| interface ToolDefinition { | ||
| name: string; | ||
| description: string; | ||
| parameters: { | ||
| type: 'object'; | ||
| properties: Record<string, unknown>; | ||
| required?: string[]; | ||
| }; | ||
| inputSchema: ToolSchema; | ||
| } | ||
| interface ToolSchema { | ||
| type: 'object'; | ||
| properties?: unknown | null; | ||
| [k: string]: unknown; | ||
| } | ||
@@ -146,2 +144,2 @@ /** | ||
| export { type BaseLLMConfig, BaseLLMProvider, type BaseMessage, type ContentBlock, type GenerateOptions, type GenerateResponse, type ImageBlock, type IterateGenerateOptions, type LLMProvider, type PartialReturn, type Role, type StopReason, type TextBlock, type TokenUsage, type ToolDefinition, type ToolResultBlock, type ToolUseBlock, convertStringToMessages, iterateFromMethods }; | ||
| export { type BaseLLMConfig, BaseLLMProvider, type BaseMessage, type ContentBlock, type GenerateOptions, type GenerateResponse, type ImageBlock, type IterateGenerateOptions, type LLMProvider, type PartialReturn, type Role, type StopReason, type TextBlock, type TokenUsage, type ToolDefinition, type ToolResultBlock, type ToolSchema, type ToolUseBlock, convertStringToMessages, iterateFromMethods }; |
+7
-9
@@ -113,14 +113,12 @@ /** | ||
| } | ||
| /** | ||
| * Tool definition interface | ||
| */ | ||
| interface ToolDefinition { | ||
| name: string; | ||
| description: string; | ||
| parameters: { | ||
| type: 'object'; | ||
| properties: Record<string, unknown>; | ||
| required?: string[]; | ||
| }; | ||
| inputSchema: ToolSchema; | ||
| } | ||
| interface ToolSchema { | ||
| type: 'object'; | ||
| properties?: unknown | null; | ||
| [k: string]: unknown; | ||
| } | ||
@@ -146,2 +144,2 @@ /** | ||
| export { type BaseLLMConfig, BaseLLMProvider, type BaseMessage, type ContentBlock, type GenerateOptions, type GenerateResponse, type ImageBlock, type IterateGenerateOptions, type LLMProvider, type PartialReturn, type Role, type StopReason, type TextBlock, type TokenUsage, type ToolDefinition, type ToolResultBlock, type ToolUseBlock, convertStringToMessages, iterateFromMethods }; | ||
| export { type BaseLLMConfig, BaseLLMProvider, type BaseMessage, type ContentBlock, type GenerateOptions, type GenerateResponse, type ImageBlock, type IterateGenerateOptions, type LLMProvider, type PartialReturn, type Role, type StopReason, type TextBlock, type TokenUsage, type ToolDefinition, type ToolResultBlock, type ToolSchema, type ToolUseBlock, convertStringToMessages, iterateFromMethods }; |
+4
-4
| { | ||
| "name": "@agenite/llm", | ||
| "version": "0.1.2", | ||
| "version": "0.1.3", | ||
| "description": "LLM interface for Agenite", | ||
@@ -21,5 +21,5 @@ "private": false, | ||
| "typescript": "^5.7.3", | ||
| "@repo/eslint-config": "0.0.1", | ||
| "@repo/tsup-config": "0.0.2", | ||
| "@repo/typescript-config": "0.0.1" | ||
| "@repo/eslint-config": "0.0.2", | ||
| "@repo/typescript-config": "0.0.1", | ||
| "@repo/tsup-config": "0.0.2" | ||
| }, | ||
@@ -26,0 +26,0 @@ "publishConfig": { |
16504
0.41%201
-0.99%