@d4y/agent-runtime-nuxt 0.1.0 → 0.1.2

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.
Files changed (48) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/frontend.d.ts +5 -0
  3. package/dist/runtime/frontend.js +14 -0
  4. package/dist/runtime/server/api/app.get.d.ts +10 -1
  5. package/dist/runtime/server/api/app.get.js +1 -0
  6. package/dist/runtime/server/api/conversations/[id]/abort.post.d.ts +1 -1
  7. package/dist/runtime/server/api/conversations/[id]/abort.post.js +1 -0
  8. package/dist/runtime/server/api/conversations/[id]/env.post.d.ts +1 -1
  9. package/dist/runtime/server/api/conversations/[id]/env.post.js +1 -0
  10. package/dist/runtime/server/api/conversations/[id]/files/raw/[...path].get.d.ts +1 -1
  11. package/dist/runtime/server/api/conversations/[id]/files/raw/[...path].get.js +2 -0
  12. package/dist/runtime/server/api/conversations/[id]/files.get.d.ts +3 -1
  13. package/dist/runtime/server/api/conversations/[id]/files.get.js +1 -0
  14. package/dist/runtime/server/api/conversations/[id]/history.get.d.ts +1 -1
  15. package/dist/runtime/server/api/conversations/[id]/history.get.js +1 -0
  16. package/dist/runtime/server/api/conversations/[id]/messages.post.d.ts +1 -1
  17. package/dist/runtime/server/api/conversations/[id]/messages.post.js +1 -0
  18. package/dist/runtime/server/api/conversations/[id]/stream.get.d.ts +1 -1
  19. package/dist/runtime/server/api/conversations/[id]/stream.get.js +1 -0
  20. package/dist/runtime/server/api/conversations/[id].delete.d.ts +1 -1
  21. package/dist/runtime/server/api/conversations/[id].delete.js +1 -0
  22. package/dist/runtime/server/api/conversations.post.d.ts +1 -1
  23. package/dist/runtime/server/api/conversations.post.js +1 -0
  24. package/dist/runtime/server/utils/agent-runtime.d.ts +1 -1
  25. package/dist/runtime/server/utils/agent-runtime.js +3 -1
  26. package/dist/runtime/shared.d.ts +16 -0
  27. package/dist/runtime/shared.js +22 -0
  28. package/package.json +23 -12
  29. package/src/frontend.ts +0 -16
  30. package/src/module.ts +0 -155
  31. package/src/nitro-globals.d.ts +0 -8
  32. package/src/runtime/components/AgentRuntimeArtifactPreview.vue +0 -192
  33. package/src/runtime/composables/useAgentRuntime.ts +0 -527
  34. package/src/runtime/composables/useAgentRuntimeMarkdown.ts +0 -145
  35. package/src/runtime/server/api/app.get.ts +0 -50
  36. package/src/runtime/server/api/conversations/[id]/abort.post.ts +0 -26
  37. package/src/runtime/server/api/conversations/[id]/env.post.ts +0 -34
  38. package/src/runtime/server/api/conversations/[id]/files/raw/[...path].get.ts +0 -48
  39. package/src/runtime/server/api/conversations/[id]/files.get.ts +0 -33
  40. package/src/runtime/server/api/conversations/[id]/history.get.ts +0 -20
  41. package/src/runtime/server/api/conversations/[id]/messages.post.ts +0 -29
  42. package/src/runtime/server/api/conversations/[id]/stream.get.ts +0 -41
  43. package/src/runtime/server/api/conversations/[id].delete.ts +0 -22
  44. package/src/runtime/server/api/conversations.post.ts +0 -26
  45. package/src/runtime/server/utils/agent-runtime.ts +0 -33
  46. package/src/runtime/utils/files.ts +0 -78
  47. package/src/shared.ts +0 -46
  48. package/src/vue-shim.d.ts +0 -6
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.13.0"
6
6
  },
7
- "version": "0.1.0",
7
+ "version": "0.1.2",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "unknown"
@@ -0,0 +1,5 @@
1
+ export type { AgentRuntimeMarkdownRenderOptions } from './composables/useAgentRuntimeMarkdown.js';
2
+ export type { AgentRuntimeFileLike, AgentRuntimeFilePreviewKind } from './utils/files.js';
3
+ export { default as AgentRuntimeArtifactPreview } from './components/AgentRuntimeArtifactPreview.vue.js';
4
+ export { createAgentRuntimeMarkdownRenderer, useAgentRuntimeMarkdown } from './composables/useAgentRuntimeMarkdown.js';
5
+ export { canPreviewAgentRuntimeFileInline, getAgentRuntimeFilePreviewKind, isAgentRuntimeImageMimeType, isAgentRuntimeImagePath, isAgentRuntimePdfMimeType, isAgentRuntimePdfPath, isAgentRuntimeTextMimeType, isAgentRuntimeTextPath, resolveAgentRuntimeWorkspaceUri, toAgentRuntimeWorkspaceRelativePath, } from './utils/files.js';
@@ -0,0 +1,14 @@
1
+ export { default as AgentRuntimeArtifactPreview } from "./components/AgentRuntimeArtifactPreview.vue";
2
+ export { createAgentRuntimeMarkdownRenderer, useAgentRuntimeMarkdown } from "./composables/useAgentRuntimeMarkdown.js";
3
+ export {
4
+ canPreviewAgentRuntimeFileInline,
5
+ getAgentRuntimeFilePreviewKind,
6
+ isAgentRuntimeImageMimeType,
7
+ isAgentRuntimeImagePath,
8
+ isAgentRuntimePdfMimeType,
9
+ isAgentRuntimePdfPath,
10
+ isAgentRuntimeTextMimeType,
11
+ isAgentRuntimeTextPath,
12
+ resolveAgentRuntimeWorkspaceUri,
13
+ toAgentRuntimeWorkspaceRelativePath
14
+ } from "./utils/files.js";
@@ -1,6 +1,15 @@
1
+ interface AppEnvField {
2
+ required?: boolean;
3
+ secret?: boolean;
4
+ description?: string;
5
+ }
1
6
  /**
2
7
  * GET `${apiPrefix}/app` — returns the manifest of the configured app
3
8
  * (so the client can render its env-schema form generically).
4
9
  */
5
- declare const _default: any;
10
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<{
11
+ appId: string;
12
+ name: string;
13
+ envSchema: Record<string, AppEnvField>;
14
+ }>>;
6
15
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { createError, defineEventHandler } from "h3";
1
2
  import { agentRuntime, agentRuntimeHeaders } from "../utils/agent-runtime.js";
2
3
  export default defineEventHandler(async () => {
3
4
  const cfg = agentRuntime();
@@ -2,5 +2,5 @@
2
2
  * POST `${apiPrefix}/conversations/:id/abort` — cancels the in-flight
3
3
  * agent run for this conversation. Returns 204 on success.
4
4
  */
5
- declare const _default: any;
5
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<null>>;
6
6
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { createError, defineEventHandler, getRouterParam, setResponseStatus } from "h3";
1
2
  import { agentRuntime, agentRuntimeHeaders } from "../../../utils/agent-runtime.js";
2
3
  export default defineEventHandler(async (event) => {
3
4
  const cfg = agentRuntime();
@@ -6,5 +6,5 @@
6
6
  * Triggers any `bootstrap[]` step on the harness side whose `rerunOn` keys
7
7
  * intersect the changed set, so this is also how you re-import auth.
8
8
  */
9
- declare const _default: any;
9
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<any>>;
10
10
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { createError, defineEventHandler, getRouterParam, readBody } from "h3";
1
2
  import { agentRuntime, agentRuntimeHeaders } from "../../../utils/agent-runtime.js";
2
3
  export default defineEventHandler(async (event) => {
3
4
  const cfg = agentRuntime();
@@ -7,5 +7,5 @@
7
7
  * forwarded verbatim — re-encoding after Nitro's decoding step is fragile
8
8
  * for filenames containing spaces or unicode.
9
9
  */
10
- declare const _default: any;
10
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<void>>;
11
11
  export default _default;
@@ -1,4 +1,6 @@
1
1
  import { Readable } from "node:stream";
2
+ import { useRuntimeConfig } from "#imports";
3
+ import { createError, defineEventHandler, getRouterParam, sendStream, setHeader } from "h3";
2
4
  import { agentRuntime } from "../../../../../utils/agent-runtime.js";
3
5
  const PASS_THROUGH_HEADERS = ["content-type", "content-length", "content-disposition", "cache-control"];
4
6
  export default defineEventHandler(async (event) => {
@@ -10,5 +10,7 @@ export interface FileEntry {
10
10
  * GET `${apiPrefix}/conversations/:id/files` — lists the workspace files
11
11
  * the agent has produced (or read in) so the UI can show a side panel.
12
12
  */
13
- declare const _default: any;
13
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<{
14
+ items: FileEntry[];
15
+ }>>;
14
16
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { createError, defineEventHandler, getRouterParam } from "h3";
1
2
  import { agentRuntime } from "../../../utils/agent-runtime.js";
2
3
  export default defineEventHandler(async (event) => {
3
4
  const cfg = agentRuntime();
@@ -1,2 +1,2 @@
1
- declare const _default: any;
1
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<any>>;
2
2
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { createError, defineEventHandler, getRouterParam } from "h3";
1
2
  import { agentRuntime } from "../../../utils/agent-runtime.js";
2
3
  export default defineEventHandler(async (event) => {
3
4
  const cfg = agentRuntime();
@@ -3,5 +3,5 @@
3
3
  * The optional `context` field is forwarded verbatim to agent-runtime, where
4
4
  * the agent picks it up as per-turn dynamic context.
5
5
  */
6
- declare const _default: any;
6
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<any>>;
7
7
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { createError, defineEventHandler, getRouterParam, readBody } from "h3";
1
2
  import { agentRuntime, agentRuntimeHeaders } from "../../../utils/agent-runtime.js";
2
3
  export default defineEventHandler(async (event) => {
3
4
  const cfg = agentRuntime();
@@ -5,5 +5,5 @@
5
5
  * Closing the client connection aborts the upstream fetch so we don't leave
6
6
  * orphaned conversations hanging.
7
7
  */
8
- declare const _default: any;
8
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<void>>;
9
9
  export default _default;
@@ -1,4 +1,5 @@
1
1
  import { Readable } from "node:stream";
2
+ import { createError, defineEventHandler, getRouterParam, sendStream, setHeader } from "h3";
2
3
  import { agentRuntime } from "../../../utils/agent-runtime.js";
3
4
  export default defineEventHandler(async (event) => {
4
5
  const cfg = agentRuntime();
@@ -1,2 +1,2 @@
1
- declare const _default: any;
1
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<null>>;
2
2
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { createError, defineEventHandler, getRouterParam, setResponseStatus } from "h3";
1
2
  import { agentRuntime } from "../../utils/agent-runtime.js";
2
3
  export default defineEventHandler(async (event) => {
3
4
  const cfg = agentRuntime();
@@ -3,5 +3,5 @@
3
3
  * configured app, optionally seeded with an `env` map (which the harness
4
4
  * uses to populate the workspace environment) and a model override.
5
5
  */
6
- declare const _default: any;
6
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<any>>;
7
7
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { createError, defineEventHandler, readBody } from "h3";
1
2
  import { agentRuntime, agentRuntimeHeaders } from "../utils/agent-runtime.js";
2
3
  export default defineEventHandler(async (event) => {
3
4
  const cfg = agentRuntime();
@@ -1,4 +1,4 @@
1
- import { type AgentRuntimeResolvedConfig } from '../../../shared.js';
1
+ import { type AgentRuntimeResolvedConfig } from '../../shared.js';
2
2
  /** Resolved server-side configuration for talking to agent-runtime. */
3
3
  export type AgentRuntimeRuntime = AgentRuntimeResolvedConfig;
4
4
  /**
@@ -1,4 +1,6 @@
1
- import { createAgentRuntimeRequestHeaders, resolveAgentRuntimeConfig } from "../../../shared";
1
+ import { useRuntimeConfig } from "#imports";
2
+ import { createError } from "h3";
3
+ import { createAgentRuntimeRequestHeaders, resolveAgentRuntimeConfig } from "../../shared.js";
2
4
  export const agentRuntime = () => {
3
5
  try {
4
6
  return resolveAgentRuntimeConfig(useRuntimeConfig().agentRuntime);
@@ -0,0 +1,16 @@
1
+ export interface AgentRuntimeConfigInput {
2
+ baseUrl?: string | null;
3
+ appKey?: string | null;
4
+ appId?: string | null;
5
+ }
6
+ export interface AgentRuntimeResolvedConfig {
7
+ baseUrl: string;
8
+ appKey: string;
9
+ appId: string;
10
+ }
11
+ export declare const normalizeAgentRuntimeBaseUrl: (value: string | null | undefined) => string;
12
+ export declare const createScopeFingerprint: (parts: Array<string | null | undefined>) => string;
13
+ export declare const resolveAgentRuntimeConfig: (config: AgentRuntimeConfigInput | null | undefined, options?: {
14
+ defaultAppId?: string;
15
+ }) => AgentRuntimeResolvedConfig;
16
+ export declare const createAgentRuntimeRequestHeaders: (config: Pick<AgentRuntimeResolvedConfig, "appKey">, extra?: Record<string, string>) => Record<string, string>;
@@ -0,0 +1,22 @@
1
+ import { createHash } from "node:crypto";
2
+ export const normalizeAgentRuntimeBaseUrl = (value) => String(value || "").trim().replace(/\/+$/, "");
3
+ export const createScopeFingerprint = (parts) => {
4
+ const normalized = parts.map((part) => typeof part === "string" && part.trim().length > 0 ? part.trim() : "none").join("|");
5
+ return createHash("sha256").update(normalized).digest("hex").slice(0, 12);
6
+ };
7
+ export const resolveAgentRuntimeConfig = (config, options) => {
8
+ const appKey = String(config?.appKey || "").trim();
9
+ if (!appKey) {
10
+ throw new Error("[agent-runtime] AGENT_RUNTIME_APP_KEY is not configured");
11
+ }
12
+ return {
13
+ baseUrl: normalizeAgentRuntimeBaseUrl(config?.baseUrl),
14
+ appKey,
15
+ appId: String(config?.appId || options?.defaultAppId || "omnisearch")
16
+ };
17
+ };
18
+ export const createAgentRuntimeRequestHeaders = (config, extra = {}) => ({
19
+ "X-Agent-Runtime-App-Key": config.appKey,
20
+ "content-type": "application/json",
21
+ ...extra
22
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d4y/agent-runtime-nuxt",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Headless Nuxt module that connects a Nuxt app to an agent-runtime server. Ships server-side proxy routes (so your X-Agent-Runtime-App-Key never leaves the server) and a single composable, useAgentRuntime(), that exposes a typed chat client.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -12,25 +12,36 @@
12
12
  "access": "public",
13
13
  "registry": "https://registry.npmjs.org/"
14
14
  },
15
- "main": "./src/module.ts",
16
- "types": "./src/module.ts",
15
+ "main": "./dist/module.mjs",
17
16
  "exports": {
18
17
  ".": {
19
- "types": "./src/module.ts",
20
- "import": "./src/module.ts"
18
+ "types": "./dist/module.d.mts",
19
+ "import": "./dist/module.mjs"
21
20
  },
22
21
  "./frontend": {
23
- "types": "./src/frontend.ts",
24
- "import": "./src/frontend.ts"
22
+ "types": "./dist/runtime/frontend.d.ts",
23
+ "import": "./dist/runtime/frontend.js"
25
24
  },
26
25
  "./shared": {
27
- "types": "./src/shared.ts",
28
- "import": "./src/shared.ts"
26
+ "types": "./dist/runtime/shared.d.ts",
27
+ "import": "./dist/runtime/shared.js"
28
+ }
29
+ },
30
+ "typesVersions": {
31
+ "*": {
32
+ ".": [
33
+ "./dist/module.d.mts"
34
+ ],
35
+ "frontend": [
36
+ "./dist/runtime/frontend.d.ts"
37
+ ],
38
+ "shared": [
39
+ "./dist/runtime/shared.d.ts"
40
+ ]
29
41
  }
30
42
  },
31
43
  "files": [
32
- "dist",
33
- "src"
44
+ "dist"
34
45
  ],
35
46
  "keywords": [
36
47
  "nuxt",
@@ -49,13 +60,13 @@
49
60
  "@nuxt/kit": "^4.4.2",
50
61
  "ai": "^6.0.168",
51
62
  "defu": "^6.1.4",
63
+ "h3": "^1.15.11",
52
64
  "markdown-it": "^14.1.1"
53
65
  },
54
66
  "devDependencies": {
55
67
  "@nuxt/module-builder": "^1.0.2",
56
68
  "@nuxt/schema": "^4.4.2",
57
69
  "@types/markdown-it": "^14.1.2",
58
- "h3": "^1.15.11",
59
70
  "nuxt": "^4.4.2",
60
71
  "typescript": "^6.0.2",
61
72
  "vue": "^3.5.32",
package/src/frontend.ts DELETED
@@ -1,16 +0,0 @@
1
- export type { AgentRuntimeMarkdownRenderOptions } from './runtime/composables/useAgentRuntimeMarkdown'
2
- export type { AgentRuntimeFileLike, AgentRuntimeFilePreviewKind } from './runtime/utils/files'
3
- export { default as AgentRuntimeArtifactPreview } from './runtime/components/AgentRuntimeArtifactPreview.vue'
4
- export { createAgentRuntimeMarkdownRenderer, useAgentRuntimeMarkdown } from './runtime/composables/useAgentRuntimeMarkdown'
5
- export {
6
- canPreviewAgentRuntimeFileInline,
7
- getAgentRuntimeFilePreviewKind,
8
- isAgentRuntimeImageMimeType,
9
- isAgentRuntimeImagePath,
10
- isAgentRuntimePdfMimeType,
11
- isAgentRuntimePdfPath,
12
- isAgentRuntimeTextMimeType,
13
- isAgentRuntimeTextPath,
14
- resolveAgentRuntimeWorkspaceUri,
15
- toAgentRuntimeWorkspaceRelativePath,
16
- } from './runtime/utils/files'
package/src/module.ts DELETED
@@ -1,155 +0,0 @@
1
- import { defineNuxtModule, createResolver, addImportsDir, addServerHandler, addTypeTemplate } from '@nuxt/kit'
2
- import { defu } from 'defu'
3
-
4
- // Re-export the public composable surface so consumers can `import type
5
- // { UIMessage, AppInfo, … } from '@d4y/agent-runtime-nuxt'` without reaching into
6
- // `runtime/`. The composable itself is auto-imported via addImportsDir.
7
- export type {
8
- UseAgentRuntime,
9
- UIMessage,
10
- AppInfo,
11
- AppAuth,
12
- AppEnvField,
13
- FileEntry,
14
- UiAction,
15
- SendOptions,
16
- ChatStatus
17
- } from './runtime/composables/useAgentRuntime'
18
- export type { AgentRuntimeMarkdownRenderOptions } from './runtime/composables/useAgentRuntimeMarkdown'
19
- export type { AgentRuntimeFileLike, AgentRuntimeFilePreviewKind } from './runtime/utils/files'
20
-
21
- /**
22
- * Module options for `@d4y/agent-runtime-nuxt`.
23
- *
24
- * Every field is optional at config time — unset values fall back to the
25
- * matching `AGENT_RUNTIME_*` environment variable at runtime, so the same build
26
- * artifact works across environments without rebuilding.
27
- */
28
- export interface ModuleOptions {
29
- /**
30
- * Base URL of the agent-runtime HTTP server (no trailing slash required).
31
- *
32
- * Falls back to `process.env.AGENT_RUNTIME_URL` then `http://127.0.0.1:18791`.
33
- */
34
- baseUrl?: string
35
-
36
- /**
37
- * App key used to authenticate against agent-runtime (`X-Agent-Runtime-App-Key` header).
38
- *
39
- * **Server-only secret.** Never exposed to the browser; the module only
40
- * forwards it from the proxy routes it registers.
41
- *
42
- * Falls back to `process.env.AGENT_RUNTIME_APP_KEY`. Required at runtime — the
43
- * module will throw a 500 from any proxy route if missing.
44
- */
45
- appKey?: string
46
-
47
- /**
48
- * App ID to bind every conversation to (must match an app registered in
49
- * the agent-runtime `apps/` directory).
50
- *
51
- * Falls back to `process.env.AGENT_RUNTIME_APP_ID` then `omnisearch`.
52
- */
53
- appId?: string
54
-
55
- /**
56
- * URL prefix for the auto-registered Nitro proxy routes. Change it if you
57
- * need to disambiguate from another module on the same `/api/...` namespace.
58
- *
59
- * Default: `/api/agent-runtime`.
60
- */
61
- apiPrefix?: string
62
- }
63
-
64
- /** Public runtime-config shape exposed to the browser (path data only). */
65
- export interface PublicAgentRuntimeConfig {
66
- /** Same value as `apiPrefix` from module options; needed by `useAgentRuntime` to build URLs. */
67
- apiPrefix: string
68
- /** App ID, used by the composable to scope `localStorage` keys. */
69
- appId: string
70
- }
71
-
72
- /** Private runtime-config shape (server-only). */
73
- export interface PrivateAgentRuntimeConfig {
74
- baseUrl: string
75
- appKey: string
76
- appId: string
77
- }
78
-
79
- declare module '@nuxt/schema' {
80
- interface RuntimeConfig {
81
- agentRuntime: PrivateAgentRuntimeConfig
82
- }
83
- interface PublicRuntimeConfig {
84
- agentRuntime: PublicAgentRuntimeConfig
85
- }
86
- }
87
-
88
- const DEFAULTS: Required<Pick<ModuleOptions, 'baseUrl' | 'appId' | 'apiPrefix'>> = {
89
- baseUrl: 'http://127.0.0.1:18791',
90
- appId: 'omnisearch',
91
- apiPrefix: '/api/agent-runtime'
92
- }
93
-
94
- export default defineNuxtModule<ModuleOptions>({
95
- meta: {
96
- name: '@d4y/agent-runtime-nuxt',
97
- configKey: 'agentRuntime',
98
- compatibility: { nuxt: '>=3.13.0' }
99
- },
100
- defaults: {},
101
- setup(userOptions, nuxt) {
102
- const resolver = createResolver(import.meta.url)
103
-
104
- const baseUrl = (userOptions.baseUrl ?? process.env.AGENT_RUNTIME_URL ?? DEFAULTS.baseUrl).replace(/\/+$/, '')
105
- const appKey = userOptions.appKey ?? process.env.AGENT_RUNTIME_APP_KEY ?? ''
106
- const appId = userOptions.appId ?? process.env.AGENT_RUNTIME_APP_ID ?? DEFAULTS.appId
107
- const apiPrefix = (userOptions.apiPrefix ?? DEFAULTS.apiPrefix).replace(/\/+$/, '')
108
-
109
- nuxt.options.runtimeConfig.agentRuntime = defu(nuxt.options.runtimeConfig.agentRuntime, {
110
- baseUrl,
111
- appKey,
112
- appId
113
- })
114
-
115
- nuxt.options.runtimeConfig.public.agentRuntime = defu(nuxt.options.runtimeConfig.public.agentRuntime, {
116
- apiPrefix,
117
- appId
118
- })
119
-
120
- // Composable auto-import — `useAgentRuntime()` is available everywhere.
121
- addImportsDir(resolver.resolve('./runtime/composables'))
122
-
123
- // Generate a `.d.ts` shim that re-exports the public types from the
124
- // module so IDEs see them without the consumer touching tsconfig paths.
125
- addTypeTemplate({
126
- filename: 'types/agent-runtime.d.ts',
127
- getContents: () => [
128
- `// Auto-generated by @d4y/agent-runtime-nuxt`,
129
- `export type { UseAgentRuntime, AppInfo, AppAuth, AppEnvField, FileEntry, UiAction, SendOptions, ChatStatus } from '${resolver.resolve('./runtime/composables/useAgentRuntime')}'`,
130
- `export type { AgentRuntimeMarkdownRenderOptions } from '${resolver.resolve('./runtime/composables/useAgentRuntimeMarkdown')}'`,
131
- `export type { AgentRuntimeFileLike, AgentRuntimeFilePreviewKind } from '${resolver.resolve('./runtime/utils/files')}'`,
132
- ''
133
- ].join('\n')
134
- })
135
-
136
- // Register every proxy route under the configured prefix.
137
- const route = (suffix: string, handler: string, method?: 'get' | 'post' | 'delete') =>
138
- addServerHandler({
139
- route: `${apiPrefix}${suffix}`,
140
- method,
141
- handler: resolver.resolve(`./runtime/server/api/${handler}`)
142
- })
143
-
144
- route('/app', 'app.get', 'get')
145
- route('/conversations', 'conversations.post', 'post')
146
- route('/conversations/:id', 'conversations/[id].delete', 'delete')
147
- route('/conversations/:id/history', 'conversations/[id]/history.get', 'get')
148
- route('/conversations/:id/stream', 'conversations/[id]/stream.get', 'get')
149
- route('/conversations/:id/messages', 'conversations/[id]/messages.post', 'post')
150
- route('/conversations/:id/abort', 'conversations/[id]/abort.post', 'post')
151
- route('/conversations/:id/env', 'conversations/[id]/env.post', 'post')
152
- route('/conversations/:id/files', 'conversations/[id]/files.get', 'get')
153
- route('/conversations/:id/files/raw/**', 'conversations/[id]/files/raw/[...path].get', 'get')
154
- }
155
- })
@@ -1,8 +0,0 @@
1
- declare const defineEventHandler: typeof import('h3').defineEventHandler
2
- declare const createError: typeof import('h3').createError
3
- declare const getRouterParam: typeof import('h3').getRouterParam
4
- declare const setHeader: typeof import('h3').setHeader
5
- declare const sendStream: typeof import('h3').sendStream
6
- declare const readBody: typeof import('h3').readBody
7
- declare const setResponseStatus: typeof import('h3').setResponseStatus
8
- declare const useRuntimeConfig: () => any