@123toto/ai-app-assistant-client 0.1.0

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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 123toto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,62 @@
1
+ # @123toto/ai-app-assistant-client
2
+
3
+ Framework-neutral browser client and optional UI for `@123toto/ai-app-assistant-server`.
4
+
5
+ ```bash
6
+ npm install @123toto/ai-app-assistant-client
7
+ ```
8
+
9
+ ## Web Component
10
+
11
+ ```ts
12
+ import "@123toto/ai-app-assistant-client/web-component";
13
+ ```
14
+
15
+ ```html
16
+ <ai-docs-assistant
17
+ endpoint="/api/ai-docs/ask"
18
+ stream-endpoint="/api/ai-docs/ask/stream"
19
+ ></ai-docs-assistant>
20
+ ```
21
+
22
+ The component handles page capture, DOM element selection, streaming, retry, cancellation and conversation state. It can be used from plain HTML, React, Vue, Svelte or Angular.
23
+
24
+ Runtime headers and visual labels can be configured programmatically:
25
+
26
+ ```ts
27
+ document.querySelector("ai-docs-assistant")?.configure({
28
+ endpoint: "/api/ai-docs/ask",
29
+ headers: () => ({ authorization: `Bearer ${auth.token()}` }),
30
+ assistantName: "Application assistant"
31
+ });
32
+ ```
33
+
34
+ ## Headless client
35
+
36
+ Import `createAiDocsClient`, `AiDocsAssistantController`, `capturePage` or `pickElement` from `@123toto/ai-app-assistant-client` when the application owns the complete UI.
37
+
38
+ ## Angular connector
39
+
40
+ ```ts
41
+ import { AiDocsAssistantComponent, provideAiDocs } from "@123toto/ai-app-assistant-client/angular";
42
+
43
+ bootstrapApplication(AppComponent, {
44
+ providers: [provideAiDocs({
45
+ endpoint: "/api/ai-docs/ask",
46
+ streamEndpoint: "/api/ai-docs/ask/stream",
47
+ managedEndpoint: "/api/ai-docs"
48
+ })]
49
+ });
50
+ ```
51
+
52
+ Angular and RxJS are optional peer dependencies. The main package and Web Components do not load Angular.
53
+
54
+ ## Settings
55
+
56
+ The optional `@123toto/ai-app-assistant-client/settings-web-component` entry point registers a generic administration screen. Applications with their own UI can use `@123toto/ai-app-assistant-client/settings` instead.
57
+
58
+ ## Capture privacy
59
+
60
+ Form values and `[data-sensitive]` subtrees are removed by default. Additional application-specific selectors can be provided through `redactSelectors`. Authentication and final privacy enforcement remain backend responsibilities.
61
+
62
+ Full documentation: [github.com/123toto/ai-docs-asker](https://github.com/123toto/ai-docs-asker)
@@ -0,0 +1,185 @@
1
+ import { type EnvironmentProviders, type OnDestroy, type OnInit } from "@angular/core";
2
+ import type { AiDocsAccessView, AskDocumentationResponse } from "@123toto/ai-app-assistant-contracts";
3
+ import { type AiDocsClient } from "./client.js";
4
+ import { type AiDocsControllerConfig, type AiDocsControllerMessage, type AiDocsControllerState } from "./controller.js";
5
+ import { type AiDocsSettingsClient } from "./settings.js";
6
+ import { type AiDocsSettingsTheme } from "./settings-web-component.js";
7
+ import * as i0 from "@angular/core";
8
+ /** Configuration for the Angular connector and its ready-to-use assistant. */
9
+ export interface AiDocsAngularConfig extends AiDocsControllerConfig {
10
+ endpoint: string;
11
+ streamEndpoint?: string;
12
+ /** Enables access discovery and the optional administration screen. */
13
+ managedEndpoint?: string;
14
+ headers?: () => HeadersInit | Promise<HeadersInit>;
15
+ assistantName?: string;
16
+ launcherLabel?: string;
17
+ subtitle?: string;
18
+ /**
19
+ * Visual tokens consumed by the generic assistant. CSS variables are valid,
20
+ * which lets a host application follow its own live theme without coupling
21
+ * this connector to a particular design system.
22
+ */
23
+ theme?: Partial<AiDocsTheme>;
24
+ /** @deprecated Prefer `theme.accent`. */
25
+ accentColor?: string;
26
+ mascot?: string;
27
+ /** Optional copy overrides; defaults follow the document language (French or English). */
28
+ labels?: Partial<AiDocsUiLabels>;
29
+ settings?: AiDocsAngularSettingsConfig;
30
+ }
31
+ export interface AiDocsAngularSettingsConfig {
32
+ title?: string;
33
+ /** Defaults to document.body. Useful when theme variables live on an application shell. */
34
+ container?: () => HTMLElement | null;
35
+ confirmRevoke?: () => boolean | Promise<boolean>;
36
+ theme?: Partial<AiDocsSettingsTheme>;
37
+ }
38
+ /** Small provider-neutral palette used by the ready-to-use assistant. */
39
+ export interface AiDocsTheme {
40
+ accent: string;
41
+ accentContrast: string;
42
+ header: string;
43
+ headerText: string;
44
+ launcher: string;
45
+ launcherText: string;
46
+ surface: string;
47
+ surfaceMuted: string;
48
+ text: string;
49
+ textMuted: string;
50
+ border: string;
51
+ selection: string;
52
+ selectionText: string;
53
+ danger: string;
54
+ }
55
+ export interface AiDocsUiLabels {
56
+ selectionInstruction: string;
57
+ cancel: string;
58
+ newConversation: string;
59
+ detach: string;
60
+ dock: string;
61
+ minimize: string;
62
+ welcomeTitle: string;
63
+ welcomeBody: string;
64
+ reliability: string;
65
+ retrying: string;
66
+ reading: string;
67
+ thinking: string;
68
+ writing: string;
69
+ finalizing: string;
70
+ stop: string;
71
+ errorTitle: string;
72
+ retry: string;
73
+ placeholder: string;
74
+ select: string;
75
+ elementSelected: string;
76
+ mediumConfidence: string;
77
+ lowConfidence: string;
78
+ insufficientConfidence: string;
79
+ conversationLimitReached: string;
80
+ send: string;
81
+ }
82
+ /** Registers the generic client while preserving Angular HTTP interceptors. */
83
+ export declare function provideAiDocs(config: AiDocsAngularConfig): EnvironmentProviders;
84
+ export type AiDocsState = AiDocsControllerState;
85
+ export type AiDocsConversationMessage = AiDocsControllerMessage;
86
+ /** Angular state, conversation and cancellable DOM-selection facade. */
87
+ export declare class AiDocsService {
88
+ #private;
89
+ readonly settingsClient?: AiDocsSettingsClient | undefined;
90
+ readonly state: import("@angular/core").Signal<AiDocsControllerState>;
91
+ readonly messages: import("@angular/core").Signal<AiDocsControllerMessage[]>;
92
+ readonly selecting: import("@angular/core").Signal<boolean>;
93
+ readonly loading: import("@angular/core").Signal<boolean>;
94
+ readonly selectedElementLabel: import("@angular/core").Signal<string | undefined>;
95
+ readonly maxConversationTurns: import("@angular/core").Signal<number>;
96
+ readonly conversationTurns: import("@angular/core").Signal<number>;
97
+ readonly conversationLimitReached: import("@angular/core").Signal<boolean>;
98
+ readonly available: import("@angular/core").Signal<boolean>;
99
+ readonly config: Readonly<AiDocsAngularConfig>;
100
+ constructor(config: AiDocsAngularConfig, client: AiDocsClient, settingsClient?: AiDocsSettingsClient | undefined);
101
+ /** Refreshes launcher visibility and the server-defined conversation limit. */
102
+ refreshAccess(): Promise<AiDocsAccessView | undefined>;
103
+ /** Captures the page and asks without application-specific DOM annotations. */
104
+ ask(options?: {
105
+ question?: string;
106
+ selectedElement?: Element;
107
+ }): Promise<AskDocumentationResponse>;
108
+ /** Starts selection only. Asking remains a separate user action. */
109
+ selectElement(): Promise<Element>;
110
+ /** Backward-compatible shortcut; prefer selectElement followed by ask. */
111
+ selectAndAsk(question: string, options?: {
112
+ signal?: AbortSignal;
113
+ }): Promise<AskDocumentationResponse>;
114
+ cancelElementSelection(): void;
115
+ clearSelectedElement(): void;
116
+ /** Aborts the active provider call without erasing the conversation. */
117
+ stop(): void;
118
+ /** Replays the last prompt after automatic retries have been exhausted. */
119
+ retry(): Promise<AskDocumentationResponse>;
120
+ /** Explicitly clears conversation and selection; minimizing does not. */
121
+ newConversation(): void;
122
+ /** Resets automatically when the application's page URL changes. */
123
+ syncPage(key?: string): boolean;
124
+ reset(): void;
125
+ /** Applies a host-provided runtime limit without recreating the assistant. */
126
+ setMaxConversationTurns(value: number): void;
127
+ }
128
+ /** Opens the framework-neutral settings UI with Angular's authenticated HttpClient. */
129
+ export declare class AiDocsSettingsService {
130
+ #private;
131
+ readonly config: AiDocsAngularConfig;
132
+ readonly client: AiDocsSettingsClient | undefined;
133
+ readonly assistant: AiDocsService;
134
+ constructor(config: AiDocsAngularConfig, client: AiDocsSettingsClient | undefined, assistant: AiDocsService);
135
+ /** Lazily creates and opens the generic settings element. */
136
+ open(): void;
137
+ close(): void;
138
+ /** Creates one shared element and refreshes launcher access after changes. */
139
+ private element;
140
+ }
141
+ /** Complete standalone UI. Add `<ai-docs-assistant />` near the app root. */
142
+ export declare class AiDocsAssistantComponent implements OnInit, OnDestroy {
143
+ readonly service: AiDocsService;
144
+ readonly open: import("@angular/core").WritableSignal<boolean>;
145
+ readonly docked: import("@angular/core").WritableSignal<boolean>;
146
+ readonly left: import("@angular/core").WritableSignal<number | null>;
147
+ readonly top: import("@angular/core").WritableSignal<number | null>;
148
+ readonly question: import("@angular/core").WritableSignal<string>;
149
+ readonly assistantName: import("@angular/core").Signal<string>;
150
+ readonly launcherLabel: import("@angular/core").Signal<string>;
151
+ readonly subtitle: import("@angular/core").Signal<string>;
152
+ readonly mascot: import("@angular/core").Signal<string>;
153
+ readonly theme: import("@angular/core").Signal<Partial<AiDocsTheme>>;
154
+ readonly labels: import("@angular/core").Signal<AiDocsUiLabels>;
155
+ private readonly conversationContent;
156
+ private routeTimer;
157
+ private dragCleanup;
158
+ private scrollFrame;
159
+ private scrollKey;
160
+ /** Keeps the latest question and the start of its answer in view. */
161
+ private readonly keepLatestTurnVisible;
162
+ ngOnInit(): void;
163
+ ngOnDestroy(): void;
164
+ show(): void;
165
+ newConversation(): void;
166
+ toggleDock(): void;
167
+ confidencePercent(response: AskDocumentationResponse): number;
168
+ confidenceClass(response: AskDocumentationResponse): string;
169
+ confidenceNotice(response: AskDocumentationResponse): string | undefined;
170
+ progressLabel(phase: "preparing" | "thinking" | "writing" | "finalizing"): string;
171
+ visibleLimitations(response: AskDocumentationResponse): string[];
172
+ updateQuestion(event: Event): void;
173
+ composerKeydown(event: KeyboardEvent): void;
174
+ submit(event?: Event): Promise<void>;
175
+ beginSelection(): Promise<void>;
176
+ cancelSelection(): void;
177
+ clearSelection(): void;
178
+ retry(): Promise<void>;
179
+ /** Relocates each sparkle between cycles; movement is hidden while transparent. */
180
+ randomizeStar(event: AnimationEvent): void;
181
+ startDrag(event: PointerEvent): void;
182
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiDocsAssistantComponent, never>;
183
+ static ɵcmp: i0.ɵɵComponentDeclaration<AiDocsAssistantComponent, "ai-docs-assistant", never, {}, {}, never, never, true, never>;
184
+ }
185
+ //# sourceMappingURL=angular.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"angular.d.ts","sourceRoot":"","sources":["../src/angular.ts"],"names":[],"mappings":"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"}