🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@agenite/llm

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agenite/llm - npm Package Compare versions

Comparing version
0.1.2
to
0.1.3
+6
-0
CHANGELOG.md
# @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 };

@@ -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 };
{
"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": {