@hashgraphonline/standards-agent-kit 0.0.1 → 0.0.4
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/LICENSE +189 -0
- package/README.md +56 -48
- package/dist/examples/utils.d.ts +26 -0
- package/dist/index.es.js +39026 -37296
- package/dist/index.es.js.map +1 -1
- package/dist/src/demo-state.d.ts +31 -0
- package/dist/src/hcs10/HCS10Client.d.ts +23 -11
- package/dist/src/index.d.ts +16 -13
- package/dist/src/tools/CheckMessagesTool.d.ts +27 -0
- package/dist/src/tools/ConnectionTool.d.ts +16 -12
- package/dist/src/tools/InitiateConnectionTool.d.ts +30 -0
- package/dist/src/tools/ListConnectionsTool.d.ts +17 -0
- package/dist/src/tools/RegisterAgentTool.d.ts +3 -1
- package/dist/src/tools/SendMessageToConnectionTool.d.ts +30 -0
- package/dist/src/tools/SendMessageTool.d.ts +1 -1
- package/dist/src/utils/HederaClient.d.ts +1 -1
- package/package.json +10 -7
- package/dist/tests/tools/Tools.test.d.ts +0 -1
- /package/dist/{tests/hcs10/HCS10Client.test.d.ts → examples/langchain-demo.d.ts} +0 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export interface RegisteredAgent {
|
|
2
|
+
name: string;
|
|
3
|
+
accountId: string;
|
|
4
|
+
inboundTopicId: string;
|
|
5
|
+
outboundTopicId: string;
|
|
6
|
+
profileTopicId?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface ActiveConnection {
|
|
9
|
+
targetAccountId: string;
|
|
10
|
+
targetAgentName: string;
|
|
11
|
+
targetInboundTopicId: string;
|
|
12
|
+
connectionTopicId: string;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Holds the shared state for the interactive demo.
|
|
16
|
+
* Tools will need access to this instance to read/update state.
|
|
17
|
+
*/
|
|
18
|
+
export declare class DemoState {
|
|
19
|
+
currentAgent: RegisteredAgent | null;
|
|
20
|
+
activeConnections: ActiveConnection[];
|
|
21
|
+
connectionMessageTimestamps: {
|
|
22
|
+
[connectionTopicId: string]: number;
|
|
23
|
+
};
|
|
24
|
+
setCurrentAgent(agent: RegisteredAgent | null): void;
|
|
25
|
+
getCurrentAgent(): RegisteredAgent | null;
|
|
26
|
+
addActiveConnection(connection: ActiveConnection): void;
|
|
27
|
+
listConnections(): ActiveConnection[];
|
|
28
|
+
getConnectionByIdentifier(identifier: string): ActiveConnection | undefined;
|
|
29
|
+
getLastTimestamp(connectionTopicId: string): number;
|
|
30
|
+
updateTimestamp(connectionTopicId: string, timestampNanos: number): void;
|
|
31
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TransactionReceipt, PrivateKey } from '@hashgraph/sdk';
|
|
2
|
-
import { HCS10Client as StandardSDKClient } from '@hashgraphonline/standards-sdk';
|
|
3
|
-
import { AgentMetadata, AgentChannels } from './types
|
|
2
|
+
import { HCS10Client as StandardSDKClient, AgentRegistrationResult, WaitForConnectionConfirmationResponse, ProfileResponse, HCSMessage } from '@hashgraphonline/standards-sdk';
|
|
3
|
+
import { AgentMetadata, AgentChannels } from './types';
|
|
4
4
|
export interface ExtendedAgentMetadata extends AgentMetadata {
|
|
5
5
|
pfpBuffer?: Buffer;
|
|
6
6
|
pfpFileName?: string;
|
|
@@ -8,7 +8,7 @@ export interface ExtendedAgentMetadata extends AgentMetadata {
|
|
|
8
8
|
type StandardHandleConnectionRequest = InstanceType<typeof StandardSDKClient>['handleConnectionRequest'];
|
|
9
9
|
type FeeConfigBuilderInterface = Parameters<StandardHandleConnectionRequest>[3];
|
|
10
10
|
type HandleConnectionRequestResponse = Awaited<ReturnType<StandardHandleConnectionRequest>>;
|
|
11
|
-
type StandardNetworkType = 'mainnet' | 'testnet';
|
|
11
|
+
export type StandardNetworkType = 'mainnet' | 'testnet';
|
|
12
12
|
/**
|
|
13
13
|
* HCS10Client wraps the HCS-10 functionalities using the @hashgraphonline/standards-sdk.
|
|
14
14
|
* - Creates and registers agents using the standard SDK flow.
|
|
@@ -16,9 +16,10 @@ type StandardNetworkType = 'mainnet' | 'testnet';
|
|
|
16
16
|
* - Sends messages on Hedera topics (currently manual, potential for standard SDK integration).
|
|
17
17
|
*/
|
|
18
18
|
export declare class HCS10Client {
|
|
19
|
-
|
|
19
|
+
standardClient: StandardSDKClient;
|
|
20
20
|
private useEncryption;
|
|
21
21
|
agentChannels?: AgentChannels;
|
|
22
|
+
guardedRegistryBaseUrl: string;
|
|
22
23
|
constructor(operatorId: string, operatorPrivateKey: string, network: StandardNetworkType, options?: {
|
|
23
24
|
useEncryption?: boolean;
|
|
24
25
|
registryUrl?: string;
|
|
@@ -29,23 +30,23 @@ export declare class HCS10Client {
|
|
|
29
30
|
/**
|
|
30
31
|
* Exposes the standard SDK's retrieveProfile method.
|
|
31
32
|
*/
|
|
32
|
-
retrieveProfile(accountId: string): Promise<
|
|
33
|
+
retrieveProfile(accountId: string): Promise<ProfileResponse>;
|
|
33
34
|
/**
|
|
34
35
|
* Exposes the standard SDK's submitConnectionRequest method.
|
|
35
36
|
*/
|
|
36
|
-
submitConnectionRequest(inboundTopicId: string,
|
|
37
|
+
submitConnectionRequest(inboundTopicId: string, memo: string): Promise<TransactionReceipt>;
|
|
37
38
|
/**
|
|
38
|
-
|
|
39
|
-
|
|
39
|
+
* Exposes the standard SDK's waitForConnectionConfirmation method.
|
|
40
|
+
*/
|
|
40
41
|
waitForConnectionConfirmation(outboundTopicId: string, // Changed from inboundTopicId based on demo usage
|
|
41
|
-
connectionRequestId: number, maxAttempts?: number, delayMs?: number): Promise<
|
|
42
|
+
connectionRequestId: number, maxAttempts?: number, delayMs?: number): Promise<WaitForConnectionConfirmationResponse>;
|
|
42
43
|
/**
|
|
43
44
|
* Creates and registers an agent using the standard SDK's HCS10Client.
|
|
44
45
|
* This handles account creation, key generation, topic setup, and registration.
|
|
45
46
|
* @param metadata - The agent's metadata, potentially including pfpBuffer and pfpFileName.
|
|
46
47
|
* @returns The registration result from the standard SDK, containing accountId, keys, topics etc.
|
|
47
48
|
*/
|
|
48
|
-
createAndRegisterAgent(metadata: ExtendedAgentMetadata): Promise<
|
|
49
|
+
createAndRegisterAgent(metadata: ExtendedAgentMetadata): Promise<AgentRegistrationResult>;
|
|
49
50
|
/**
|
|
50
51
|
* Sends a structured HCS-10 message to the specified topic using the standard SDK client.
|
|
51
52
|
* Handles potential inscription for large messages.
|
|
@@ -57,7 +58,7 @@ export declare class HCS10Client {
|
|
|
57
58
|
* @param submitKey - Optional private key for topics requiring specific submit keys.
|
|
58
59
|
* @returns A confirmation status string from the transaction receipt.
|
|
59
60
|
*/
|
|
60
|
-
sendMessage(topicId: string,
|
|
61
|
+
sendMessage(topicId: string, data: string, memo?: string, submitKey?: PrivateKey): Promise<string>;
|
|
61
62
|
/**
|
|
62
63
|
* Retrieves messages from a topic using the standard SDK client.
|
|
63
64
|
*
|
|
@@ -71,11 +72,22 @@ export declare class HCS10Client {
|
|
|
71
72
|
sequence_number: number;
|
|
72
73
|
}>;
|
|
73
74
|
}>;
|
|
75
|
+
getMessageStream(topicId: string): Promise<{
|
|
76
|
+
messages: HCSMessage[];
|
|
77
|
+
}>;
|
|
74
78
|
/**
|
|
75
79
|
* Retrieves content from an inscribed message using the standard SDK client.
|
|
76
80
|
* @param inscriptionIdOrData - The inscription ID (hcs://...) or potentially raw data string.
|
|
77
81
|
* @returns The resolved message content.
|
|
78
82
|
*/
|
|
79
83
|
getMessageContent(inscriptionIdOrData: string): Promise<string>;
|
|
84
|
+
/**
|
|
85
|
+
* Retrieves the inbound topic ID associated with the current operator.
|
|
86
|
+
* This typically involves fetching the operator's own HCS-10 profile.
|
|
87
|
+
* @returns A promise that resolves to the operator's inbound topic ID.
|
|
88
|
+
* @throws {Error} If the operator ID cannot be determined or the profile/topic cannot be retrieved.
|
|
89
|
+
*/
|
|
90
|
+
getInboundTopicId(): Promise<string>;
|
|
91
|
+
setClient(accountId: string, privateKey: string): StandardSDKClient;
|
|
80
92
|
}
|
|
81
93
|
export {};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
import { HCS10Client } from './hcs10/HCS10Client
|
|
2
|
-
import { RegisterAgentTool } from './tools/RegisterAgentTool
|
|
3
|
-
import { SendMessageTool } from './tools/SendMessageTool
|
|
4
|
-
import { ConnectionTool } from './tools/ConnectionTool
|
|
1
|
+
import { HCS10Client } from './hcs10/HCS10Client';
|
|
2
|
+
import { RegisterAgentTool } from './tools/RegisterAgentTool';
|
|
3
|
+
import { SendMessageTool } from './tools/SendMessageTool';
|
|
4
|
+
import { ConnectionTool } from './tools/ConnectionTool';
|
|
5
|
+
import { DemoState } from './demo-state';
|
|
6
|
+
export interface HCS10InitializationOptions {
|
|
7
|
+
useEncryption?: boolean;
|
|
8
|
+
registryUrl?: string;
|
|
9
|
+
demoState?: DemoState;
|
|
10
|
+
}
|
|
5
11
|
/**
|
|
6
12
|
* Initializes the HCS10 client and returns pre-registered LangChain tools.
|
|
7
13
|
*
|
|
8
|
-
* @param options - Optional settings
|
|
14
|
+
* @param options - Optional settings including useEncryption, registryUrl, and demoState.
|
|
9
15
|
*/
|
|
10
|
-
export declare function initializeHCS10Client(options?: {
|
|
11
|
-
useEncryption?: boolean;
|
|
12
|
-
registryUrl?: string;
|
|
13
|
-
}): Promise<{
|
|
16
|
+
export declare function initializeHCS10Client(options?: HCS10InitializationOptions): Promise<{
|
|
14
17
|
hcs10Client: HCS10Client;
|
|
15
18
|
tools: {
|
|
16
19
|
registerAgentTool: RegisterAgentTool;
|
|
@@ -18,7 +21,7 @@ export declare function initializeHCS10Client(options?: {
|
|
|
18
21
|
connectionTool: ConnectionTool;
|
|
19
22
|
};
|
|
20
23
|
}>;
|
|
21
|
-
export * from './hcs10/HCS10Client
|
|
22
|
-
export * from './tools/RegisterAgentTool
|
|
23
|
-
export * from './tools/SendMessageTool
|
|
24
|
-
export * from './tools/ConnectionTool
|
|
24
|
+
export * from './hcs10/HCS10Client';
|
|
25
|
+
export * from './tools/RegisterAgentTool';
|
|
26
|
+
export * from './tools/SendMessageTool';
|
|
27
|
+
export * from './tools/ConnectionTool';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { StructuredTool, ToolParams } from '@langchain/core/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { HCS10Client } from '../hcs10/HCS10Client';
|
|
4
|
+
import { DemoState } from '../demo-state';
|
|
5
|
+
export interface CheckMessagesToolParams extends ToolParams {
|
|
6
|
+
hcsClient: HCS10Client;
|
|
7
|
+
demoState: DemoState;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* A tool to check for new messages on an active HCS-10 connection topic.
|
|
11
|
+
*/
|
|
12
|
+
export declare class CheckMessagesTool extends StructuredTool {
|
|
13
|
+
name: string;
|
|
14
|
+
description: string;
|
|
15
|
+
schema: z.ZodObject<{
|
|
16
|
+
targetIdentifier: z.ZodString;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
targetIdentifier: string;
|
|
19
|
+
}, {
|
|
20
|
+
targetIdentifier: string;
|
|
21
|
+
}>;
|
|
22
|
+
private hcsClient;
|
|
23
|
+
private demoState;
|
|
24
|
+
private logger;
|
|
25
|
+
constructor({ hcsClient, demoState, ...rest }: CheckMessagesToolParams);
|
|
26
|
+
protected _call({ targetIdentifier }: z.infer<this['schema']>): Promise<string>;
|
|
27
|
+
}
|
|
@@ -1,30 +1,34 @@
|
|
|
1
|
-
import { HCS10Client } from '../hcs10/HCS10Client
|
|
2
|
-
import { StructuredTool } from '@langchain/core/tools';
|
|
1
|
+
import { HCS10Client } from '../hcs10/HCS10Client';
|
|
2
|
+
import { StructuredTool, ToolParams } from '@langchain/core/tools';
|
|
3
3
|
import { z } from 'zod';
|
|
4
|
+
import { DemoState } from '../demo-state';
|
|
5
|
+
export interface ConnectionToolParams extends ToolParams {
|
|
6
|
+
client: HCS10Client;
|
|
7
|
+
demoState: DemoState;
|
|
8
|
+
}
|
|
4
9
|
/**
|
|
5
|
-
* ConnectionTool monitors
|
|
10
|
+
* ConnectionTool monitors the *current* agent's inbound topic for connection requests
|
|
6
11
|
* and automatically handles them using the HCS-10 standard SDK flow.
|
|
12
|
+
* Use this ONLY to passively LISTEN for other agents trying to connect TO YOU.
|
|
13
|
+
* This tool takes NO arguments and does NOT start outgoing connections.
|
|
7
14
|
*/
|
|
8
15
|
export declare class ConnectionTool extends StructuredTool {
|
|
9
16
|
name: string;
|
|
10
17
|
description: string;
|
|
11
18
|
private client;
|
|
12
19
|
private logger;
|
|
20
|
+
private demoState;
|
|
13
21
|
private isMonitoring;
|
|
14
22
|
private monitoringTopic;
|
|
15
|
-
schema: z.ZodObject<{
|
|
16
|
-
inboundTopicId: z.ZodString;
|
|
17
|
-
}, "strip", z.ZodTypeAny, {
|
|
18
|
-
inboundTopicId: string;
|
|
19
|
-
}, {
|
|
20
|
-
inboundTopicId: string;
|
|
21
|
-
}>;
|
|
23
|
+
schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
22
24
|
/**
|
|
23
|
-
* @param client - Instance of HCS10Client
|
|
25
|
+
* @param client - Instance of HCS10Client.
|
|
26
|
+
* @param demoState - Instance of DemoState for shared state management.
|
|
24
27
|
*/
|
|
25
|
-
constructor(client:
|
|
28
|
+
constructor({ client, demoState, ...rest }: ConnectionToolParams);
|
|
26
29
|
/**
|
|
27
30
|
* Initiates the connection request monitoring process in the background.
|
|
31
|
+
* Gets the inbound topic ID from the configured client.
|
|
28
32
|
*/
|
|
29
33
|
_call(input: z.infer<typeof this.schema>): Promise<string>;
|
|
30
34
|
/**
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { StructuredTool, ToolParams } from '@langchain/core/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { HCS10Client } from '../hcs10/HCS10Client';
|
|
4
|
+
import { DemoState } from '../demo-state';
|
|
5
|
+
export interface InitiateConnectionToolParams extends ToolParams {
|
|
6
|
+
hcsClient: HCS10Client;
|
|
7
|
+
demoState: DemoState;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* A tool to actively START a NEW HCS-10 connection TO a target agent.
|
|
11
|
+
* Requires the target agent's account ID.
|
|
12
|
+
* It retrieves their profile, sends a connection request, waits for confirmation, and stores the connection.
|
|
13
|
+
* Use this tool ONLY to actively INITIATE an OUTGOING connection.
|
|
14
|
+
*/
|
|
15
|
+
export declare class InitiateConnectionTool extends StructuredTool {
|
|
16
|
+
name: string;
|
|
17
|
+
description: string;
|
|
18
|
+
schema: z.ZodObject<{
|
|
19
|
+
targetAccountId: z.ZodString;
|
|
20
|
+
}, "strip", z.ZodTypeAny, {
|
|
21
|
+
targetAccountId: string;
|
|
22
|
+
}, {
|
|
23
|
+
targetAccountId: string;
|
|
24
|
+
}>;
|
|
25
|
+
private hcsClient;
|
|
26
|
+
private demoState;
|
|
27
|
+
private logger;
|
|
28
|
+
constructor({ hcsClient, demoState, ...rest }: InitiateConnectionToolParams);
|
|
29
|
+
protected _call({ targetAccountId, }: z.infer<this['schema']>): Promise<string>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { StructuredTool, ToolParams } from '@langchain/core/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { DemoState } from '../demo-state';
|
|
4
|
+
export interface ListConnectionsToolParams extends ToolParams {
|
|
5
|
+
demoState: DemoState;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* A tool to list currently active HCS-10 connections stored in the DemoState.
|
|
9
|
+
*/
|
|
10
|
+
export declare class ListConnectionsTool extends StructuredTool {
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
14
|
+
private demoState;
|
|
15
|
+
constructor({ demoState, ...rest }: ListConnectionsToolParams);
|
|
16
|
+
protected _call(_: z.infer<this['schema']>): Promise<string>;
|
|
17
|
+
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { HCS10Client } from '../hcs10/HCS10Client
|
|
1
|
+
import { HCS10Client } from '../hcs10/HCS10Client';
|
|
2
2
|
import { StructuredTool } from '@langchain/core/tools';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
/**
|
|
5
5
|
* RegisterAgentTool wraps the createAndRegisterAgent() function of HCS10Client.
|
|
6
6
|
* It creates and registers an agent on Hedera using the HCS-10 standard SDK flow.
|
|
7
|
+
* On success, returns a JSON string containing the new agent's details (including private key).
|
|
7
8
|
*/
|
|
8
9
|
export declare class RegisterAgentTool extends StructuredTool {
|
|
9
10
|
name: string;
|
|
@@ -31,6 +32,7 @@ export declare class RegisterAgentTool extends StructuredTool {
|
|
|
31
32
|
constructor(client: HCS10Client);
|
|
32
33
|
/**
|
|
33
34
|
* Calls createAndRegisterAgent() with the provided metadata.
|
|
35
|
+
* Returns a JSON string with agent details on success, or an error string.
|
|
34
36
|
*/
|
|
35
37
|
_call(input: z.infer<typeof this.schema>): Promise<string>;
|
|
36
38
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { StructuredTool, ToolParams } from '@langchain/core/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { HCS10Client } from '../hcs10/HCS10Client';
|
|
4
|
+
import { DemoState } from '../demo-state';
|
|
5
|
+
export interface SendMessageToConnectionToolParams extends ToolParams {
|
|
6
|
+
hcsClient: HCS10Client;
|
|
7
|
+
demoState: DemoState;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* A tool to send a message to an agent over an established HCS-10 connection.
|
|
11
|
+
*/
|
|
12
|
+
export declare class SendMessageToConnectionTool extends StructuredTool {
|
|
13
|
+
name: string;
|
|
14
|
+
description: string;
|
|
15
|
+
schema: z.ZodObject<{
|
|
16
|
+
targetIdentifier: z.ZodString;
|
|
17
|
+
message: z.ZodString;
|
|
18
|
+
}, "strip", z.ZodTypeAny, {
|
|
19
|
+
message: string;
|
|
20
|
+
targetIdentifier: string;
|
|
21
|
+
}, {
|
|
22
|
+
message: string;
|
|
23
|
+
targetIdentifier: string;
|
|
24
|
+
}>;
|
|
25
|
+
private hcsClient;
|
|
26
|
+
private demoState;
|
|
27
|
+
private logger;
|
|
28
|
+
constructor({ hcsClient, demoState, ...rest }: SendMessageToConnectionToolParams);
|
|
29
|
+
protected _call({ targetIdentifier, message, }: z.infer<this['schema']>): Promise<string>;
|
|
30
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hashgraphonline/standards-agent-kit",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "An
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"description": "An Agents implementation of Hashgraph Online's Standards SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.es.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -12,11 +12,13 @@
|
|
|
12
12
|
"build": "vite build",
|
|
13
13
|
"test": "jest",
|
|
14
14
|
"lint": "eslint . --ext .ts",
|
|
15
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
15
16
|
"prepare": "npm run build",
|
|
17
|
+
"prepublishOnly": "npm run build",
|
|
18
|
+
"release": "npm publish --access public",
|
|
16
19
|
"cli-demo": "tsx examples/cli-demo.ts",
|
|
17
20
|
"interactive-demo": "tsx examples/interactive-demo.ts",
|
|
18
|
-
"langchain-demo": "tsx examples/langchain-demo.
|
|
19
|
-
"release": "npm publish --access public"
|
|
21
|
+
"langchain-demo": "tsx examples/langchain-demo.js"
|
|
20
22
|
},
|
|
21
23
|
"keywords": [
|
|
22
24
|
"hedera",
|
|
@@ -25,11 +27,11 @@
|
|
|
25
27
|
"sdk",
|
|
26
28
|
"ai-agent"
|
|
27
29
|
],
|
|
28
|
-
"author": "
|
|
30
|
+
"author": "Hashgraph Online",
|
|
29
31
|
"license": "Apache-2.0",
|
|
30
32
|
"dependencies": {
|
|
31
33
|
"@hashgraph/sdk": "^2.39.0",
|
|
32
|
-
"@hashgraphonline/standards-sdk": "
|
|
34
|
+
"@hashgraphonline/standards-sdk": "0.0.61",
|
|
33
35
|
"@langchain/community": "^0.3.37",
|
|
34
36
|
"@langchain/openai": "^0.5.1",
|
|
35
37
|
"dotenv": "^16.4.1",
|
|
@@ -45,7 +47,8 @@
|
|
|
45
47
|
"@typescript-eslint/parser": "^6.20.0",
|
|
46
48
|
"eslint": "^8.56.0",
|
|
47
49
|
"jest": "^29.7.0",
|
|
48
|
-
"
|
|
50
|
+
"@swc/core": "^1.11.16",
|
|
51
|
+
"@swc/jest": "^0.2.36",
|
|
49
52
|
"ts-node": "^10.9.2",
|
|
50
53
|
"tsconfig-paths": "^4.2.0",
|
|
51
54
|
"tsx": "^4.19.3",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
File without changes
|