@arcteninc/core 0.0.21 → 0.0.22
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/dist/components/ArctenAgent.d.ts +25 -0
- package/dist/components/ArctenAgent.d.ts.map +1 -1
- package/dist/components/ai-elements/prompt-input.d.ts +187 -0
- package/dist/components/ai-elements/prompt-input.d.ts.map +1 -0
- package/dist/components/ai-elements/reasoning.d.ts +17 -0
- package/dist/components/ai-elements/reasoning.d.ts.map +1 -0
- package/dist/components/ai-elements/response.d.ts +8 -0
- package/dist/components/ai-elements/response.d.ts.map +1 -0
- package/dist/components/ai-elements/shimmer.d.ts +10 -0
- package/dist/components/ai-elements/shimmer.d.ts.map +1 -0
- package/dist/components/tool-call-approval.d.ts +9 -0
- package/dist/components/tool-call-approval.d.ts.map +1 -0
- package/dist/components/tool-call-result.d.ts +8 -0
- package/dist/components/tool-call-result.d.ts.map +1 -0
- package/dist/components/ui/autotextarea.d.ts +19 -0
- package/dist/components/ui/autotextarea.d.ts.map +1 -0
- package/dist/components/ui/badge.d.ts +10 -0
- package/dist/components/ui/badge.d.ts.map +1 -0
- package/dist/components/ui/button.d.ts +14 -0
- package/dist/components/ui/button.d.ts.map +1 -0
- package/dist/components/ui/collapsible.d.ts +6 -0
- package/dist/components/ui/collapsible.d.ts.map +1 -0
- package/dist/components/ui/command.d.ts +19 -0
- package/dist/components/ui/command.d.ts.map +1 -0
- package/dist/components/ui/dialog.d.ts +16 -0
- package/dist/components/ui/dialog.d.ts.map +1 -0
- package/dist/components/ui/dropdown-menu.d.ts +26 -0
- package/dist/components/ui/dropdown-menu.d.ts.map +1 -0
- package/dist/components/ui/hover-card.d.ts +7 -0
- package/dist/components/ui/hover-card.d.ts.map +1 -0
- package/dist/components/ui/input-group.d.ts +17 -0
- package/dist/components/ui/input-group.d.ts.map +1 -0
- package/dist/components/ui/input.d.ts +4 -0
- package/dist/components/ui/input.d.ts.map +1 -0
- package/dist/components/ui/kbd.d.ts +4 -0
- package/dist/components/ui/kbd.d.ts.map +1 -0
- package/dist/components/ui/select.d.ts +16 -0
- package/dist/components/ui/select.d.ts.map +1 -0
- package/dist/components/ui/textarea.d.ts +4 -0
- package/dist/components/ui/textarea.d.ts.map +1 -0
- package/dist/components/ui/tooltip.d.ts +8 -0
- package/dist/components/ui/tooltip.d.ts.map +1 -0
- package/dist/index.cjs +20 -7
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.mjs +2361 -2537
- package/dist/lib/useAgent.d.ts +3 -0
- package/dist/lib/useAgent.d.ts.map +1 -0
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/server.d.ts +9 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/types/tool-description.d.ts +18 -0
- package/dist/types/tool-description.d.ts.map +1 -0
- package/dist/types/use-agent.d.ts +73 -0
- package/dist/types/use-agent.d.ts.map +1 -0
- package/dist/utils/extract-tool-metadata.d.ts +26 -0
- package/dist/utils/extract-tool-metadata.d.ts.map +1 -0
- package/dist/verifyToken.d.ts +19 -0
- package/dist/verifyToken.d.ts.map +1 -0
- package/package.json +7 -4
- package/scripts/cli-extract-types-auto.ts +598 -541
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { UseAgentOptions, UseAgentReturn } from '../types/use-agent';
|
|
2
|
+
export declare function useAgent({ apiBaseUrl, tokenEndpoint, clientToken: providedToken, skipTokenFetch, user, tools, safeTools, toolMetadata, systemPrompt, initialMessages, conversationId: initialConversationId, onToolCall, onFinish, ragFilters, }?: UseAgentOptions): UseAgentReturn;
|
|
3
|
+
//# sourceMappingURL=useAgent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAgent.d.ts","sourceRoot":"","sources":["../../src/lib/useAgent.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,eAAe,EACf,cAAc,EAGf,MAAM,oBAAoB,CAAC;AAE5B,wBAAgB,QAAQ,CAAC,EACvB,UAAqC,EACrC,aAAmC,EACnC,WAAW,EAAE,aAAa,EAC1B,cAAsB,EACtB,IAAI,EACJ,KAAU,EACV,SAAc,EACd,YAAY,EACZ,YAAiB,EACjB,eAAoB,EACpB,cAAc,EAAE,qBAAqB,EACrC,UAAU,EACV,QAAQ,EACR,UAAU,GACX,GAAE,eAAoB,GAAG,cAAc,CAkZvC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,UAAU,EAAE,MAAM,MAAM,CAAA;AAG5C,wBAAgB,EAAE,CAAC,GAAG,MAAM,EAAE,UAAU,EAAE,UAEzC"}
|
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Server-only exports for @arcteninc/core
|
|
3
|
+
*
|
|
4
|
+
* This module is safe to import in server environments like Next.js API routes,
|
|
5
|
+
* as it doesn't include any React components or hooks.
|
|
6
|
+
*/
|
|
7
|
+
export { verifyToken } from './verifyToken';
|
|
8
|
+
export type { VerifyTokenOptions, TokenResponse } from './verifyToken';
|
|
9
|
+
//# sourceMappingURL=server.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,YAAY,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface ToolDescription {
|
|
2
|
+
name: string;
|
|
3
|
+
friendlyName: string;
|
|
4
|
+
description: string;
|
|
5
|
+
paramCount: number;
|
|
6
|
+
params: string[];
|
|
7
|
+
sampleUsage: string;
|
|
8
|
+
}
|
|
9
|
+
export interface ToolDescriptionResponse {
|
|
10
|
+
tools: ToolDescription[];
|
|
11
|
+
}
|
|
12
|
+
export interface ToolDescriptionRequest {
|
|
13
|
+
tools: Array<{
|
|
14
|
+
name: string;
|
|
15
|
+
code: string;
|
|
16
|
+
}>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=tool-description.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tool-description.d.ts","sourceRoot":"","sources":["../../src/types/tool-description.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,eAAe,EAAE,CAAC;CAC1B;AAED,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,KAAK,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;KACd,CAAC,CAAC;CACJ"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { UIMessage } from '@ai-sdk/react';
|
|
2
|
+
export type ToolFunction = (...args: any[]) => any;
|
|
3
|
+
export interface ToolCall {
|
|
4
|
+
toolCallId: string;
|
|
5
|
+
toolName: string;
|
|
6
|
+
args: Record<string, any>;
|
|
7
|
+
}
|
|
8
|
+
export interface OnToolCallOptions {
|
|
9
|
+
toolCall: ToolCall;
|
|
10
|
+
}
|
|
11
|
+
export interface OnFinishOptions {
|
|
12
|
+
message: UIMessage;
|
|
13
|
+
messages: UIMessage[];
|
|
14
|
+
isAbort: boolean;
|
|
15
|
+
isDisconnect: boolean;
|
|
16
|
+
isError: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface Conversation {
|
|
19
|
+
_id: string;
|
|
20
|
+
chatId: string;
|
|
21
|
+
title: string;
|
|
22
|
+
updatedAt: number;
|
|
23
|
+
messages?: UIMessage[];
|
|
24
|
+
}
|
|
25
|
+
export interface UseAgentOptions {
|
|
26
|
+
apiBaseUrl?: string;
|
|
27
|
+
tokenEndpoint?: string;
|
|
28
|
+
clientToken?: string;
|
|
29
|
+
skipTokenFetch?: boolean;
|
|
30
|
+
user?: {
|
|
31
|
+
id: string;
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
};
|
|
34
|
+
tools?: ToolFunction[];
|
|
35
|
+
safeTools?: ToolFunction[];
|
|
36
|
+
toolMetadata?: any;
|
|
37
|
+
systemPrompt?: string;
|
|
38
|
+
initialMessages?: UIMessage[];
|
|
39
|
+
conversationId?: string;
|
|
40
|
+
onToolCall?: (options: OnToolCallOptions) => void | Promise<void>;
|
|
41
|
+
onFinish?: (options: OnFinishOptions) => void;
|
|
42
|
+
ragFilters?: {
|
|
43
|
+
docIds?: string[];
|
|
44
|
+
pageIds?: string[];
|
|
45
|
+
site?: string;
|
|
46
|
+
lang?: string;
|
|
47
|
+
tags?: string[];
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
export interface UseAgentReturn {
|
|
51
|
+
id: string | null;
|
|
52
|
+
messages: UIMessage[];
|
|
53
|
+
status: "ready" | "submitted" | "streaming" | "error";
|
|
54
|
+
error: Error | undefined;
|
|
55
|
+
sendMessage: (message: {
|
|
56
|
+
text: string;
|
|
57
|
+
}) => void;
|
|
58
|
+
stop: () => void;
|
|
59
|
+
addToolOutput: (result: {
|
|
60
|
+
toolCallId: string;
|
|
61
|
+
tool: string;
|
|
62
|
+
output: any;
|
|
63
|
+
}) => void;
|
|
64
|
+
setMessages: (messages: UIMessage[]) => void;
|
|
65
|
+
conversations: Conversation[];
|
|
66
|
+
loadConversation: (conversationId: string) => Promise<void>;
|
|
67
|
+
deleteConversation: (conversationId: string) => Promise<void>;
|
|
68
|
+
startNewConversation: () => void;
|
|
69
|
+
isLoadingConversations: boolean;
|
|
70
|
+
clientToken: string | null;
|
|
71
|
+
tokenError: string | null;
|
|
72
|
+
}
|
|
73
|
+
//# sourceMappingURL=use-agent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-agent.d.ts","sourceRoot":"","sources":["../../src/types/use-agent.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tool metadata extraction using build-time generated metadata
|
|
3
|
+
* Requires running arcten-extract-types CLI before build
|
|
4
|
+
*/
|
|
5
|
+
export interface ToolMetadata {
|
|
6
|
+
name: string;
|
|
7
|
+
description: string;
|
|
8
|
+
jsonSchema: any;
|
|
9
|
+
}
|
|
10
|
+
interface BuildTimeFunctionMetadata {
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
parameters: any;
|
|
14
|
+
returnType?: string;
|
|
15
|
+
isAsync?: boolean;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Extract tool metadata from functions using build-time generated metadata
|
|
19
|
+
*
|
|
20
|
+
* @param functions - Array of tool functions to extract metadata from
|
|
21
|
+
* @param buildTimeMeta - Build-time metadata from .arcten/tool-metadata.ts (REQUIRED)
|
|
22
|
+
* @throws Error if buildTimeMeta is not provided or if metadata is missing for any function
|
|
23
|
+
*/
|
|
24
|
+
export declare function extractToolsMetadata(functions: Function[], buildTimeMeta?: Record<string, BuildTimeFunctionMetadata> | null): ToolMetadata[];
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=extract-tool-metadata.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extract-tool-metadata.d.ts","sourceRoot":"","sources":["../../src/utils/extract-tool-metadata.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,GAAG,CAAC;CACjB;AAGD,UAAU,yBAAyB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,GAAG,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAClC,SAAS,EAAE,QAAQ,EAAE,EACrB,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,yBAAyB,CAAC,GAAG,IAAI,GAC/D,YAAY,EAAE,CAiChB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Verify token with Arcten API
|
|
3
|
+
* This function should be called from your backend API route
|
|
4
|
+
*/
|
|
5
|
+
export interface VerifyTokenOptions {
|
|
6
|
+
apiKey: string;
|
|
7
|
+
user?: {
|
|
8
|
+
id: string;
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
};
|
|
11
|
+
apiUrl?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface TokenResponse {
|
|
14
|
+
clientToken: string;
|
|
15
|
+
expiresAt: number;
|
|
16
|
+
projectId?: string;
|
|
17
|
+
}
|
|
18
|
+
export declare function verifyToken(options: VerifyTokenOptions): Promise<TokenResponse>;
|
|
19
|
+
//# sourceMappingURL=verifyToken.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"verifyToken.d.ts","sourceRoot":"","sources":["../src/verifyToken.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;IAC1C,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAsB,WAAW,CAC/B,OAAO,EAAE,kBAAkB,GAC1B,OAAO,CAAC,aAAa,CAAC,CA0BxB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcteninc/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
30
|
"dev": "vite build --watch",
|
|
31
|
-
"build": "vite build
|
|
31
|
+
"build": "vite build",
|
|
32
32
|
"prepublishOnly": "bun run build"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -42,10 +42,12 @@
|
|
|
42
42
|
"@types/node": "^24.9.2",
|
|
43
43
|
"@types/react": "^19.2.2",
|
|
44
44
|
"@types/react-dom": "^19.2.2",
|
|
45
|
+
"ajv": "^8.17.1",
|
|
45
46
|
"react": "^19.2.0",
|
|
46
47
|
"react-dom": "^19.2.0",
|
|
47
48
|
"typescript": "^5.9.3",
|
|
48
|
-
"vite": "^7.1.12"
|
|
49
|
+
"vite": "^7.1.12",
|
|
50
|
+
"vite-plugin-dts": "^4.5.4"
|
|
49
51
|
},
|
|
50
52
|
"dependencies": {
|
|
51
53
|
"@ai-sdk/openai": "^3.0.0-beta.47",
|
|
@@ -75,6 +77,7 @@
|
|
|
75
77
|
"streamdown": "^1.4.0",
|
|
76
78
|
"tailwind-merge": "^3.3.1",
|
|
77
79
|
"tw-animate-css": "^1.4.0",
|
|
78
|
-
"zod": "^3.24.1"
|
|
80
|
+
"zod": "^3.24.1",
|
|
81
|
+
"zod-to-json-schema": "^3.24.6"
|
|
79
82
|
}
|
|
80
83
|
}
|