@alfe.ai/agent-api-client 0.3.0 → 0.4.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/README.md +16 -0
- package/dist/index.cjs +139 -0
- package/dist/index.d.cts +152 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +152 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +139 -0
- package/dist/index.js.map +1 -1
- package/package.json +10 -1
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# @alfe.ai/agent-api-client
|
|
2
|
+
|
|
3
|
+
Agent self-service API client — agents calling /agents/ endpoints
|
|
4
|
+
|
|
5
|
+
Part of [**Alfe**](https://alfe.ai) — the operating system for AI agents: build, deploy, and run agents with persistent memory, identity, integrations, and channels. See the [documentation](https://docs.alfe.ai) to get started.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @alfe.ai/agent-api-client
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Links
|
|
14
|
+
|
|
15
|
+
- 🌐 Website: <https://alfe.ai>
|
|
16
|
+
- 📚 Docs: <https://docs.alfe.ai>
|
package/dist/index.cjs
CHANGED
|
@@ -596,6 +596,47 @@ var AgentApiClient = class {
|
|
|
596
596
|
body: JSON.stringify(data)
|
|
597
597
|
});
|
|
598
598
|
}
|
|
599
|
+
/** Update the agent's own name and/or voice config. Returns the updated agent. */
|
|
600
|
+
async updateSelf(update) {
|
|
601
|
+
return this.request("/agent/self", {
|
|
602
|
+
method: "PATCH",
|
|
603
|
+
body: JSON.stringify(update)
|
|
604
|
+
});
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* Generate the agent's own avatar from a text prompt. The image is generated,
|
|
608
|
+
* stored, and set on the agent server-side; returns the updated agent.
|
|
609
|
+
*/
|
|
610
|
+
async generateAvatar(args) {
|
|
611
|
+
return this.request("/agent/avatar/generate", {
|
|
612
|
+
method: "POST",
|
|
613
|
+
body: JSON.stringify(args)
|
|
614
|
+
});
|
|
615
|
+
}
|
|
616
|
+
/**
|
|
617
|
+
* Get a presigned PUT URL to upload a new avatar image. Upload the bytes to
|
|
618
|
+
* `uploadUrl`, then call `finalizeAvatar(s3Key)` to set it on the agent.
|
|
619
|
+
*/
|
|
620
|
+
async presignAvatar(args) {
|
|
621
|
+
return this.request("/agent/avatar/presign", {
|
|
622
|
+
method: "POST",
|
|
623
|
+
body: JSON.stringify(args)
|
|
624
|
+
});
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* Finalize an avatar upload — validates ownership + size, then sets the
|
|
628
|
+
* agent's `avatarUrl` server-side. Returns the updated agent.
|
|
629
|
+
*/
|
|
630
|
+
async finalizeAvatar(s3Key) {
|
|
631
|
+
return this.request("/agent/avatar", {
|
|
632
|
+
method: "POST",
|
|
633
|
+
body: JSON.stringify({ s3Key })
|
|
634
|
+
});
|
|
635
|
+
}
|
|
636
|
+
/** List the platform voice catalogue (ElevenLabs) so the agent can pick its own voice. */
|
|
637
|
+
async listVoices() {
|
|
638
|
+
return this.request("/agent/voices");
|
|
639
|
+
}
|
|
599
640
|
/**
|
|
600
641
|
* Mint a fresh AES-256 data key for a specific (secret, field) pair. The
|
|
601
642
|
* encryption context is rebuilt server-side from `auth.tenantId` + the body
|
|
@@ -991,6 +1032,104 @@ var AgentApiClient = class {
|
|
|
991
1032
|
body: JSON.stringify(entry)
|
|
992
1033
|
}).catch(() => {});
|
|
993
1034
|
}
|
|
1035
|
+
async requestBrowserTakeover(args) {
|
|
1036
|
+
return this.request("/agent/remote/takeover", {
|
|
1037
|
+
method: "POST",
|
|
1038
|
+
body: JSON.stringify(args)
|
|
1039
|
+
});
|
|
1040
|
+
}
|
|
1041
|
+
async getRemoteSession(sessionId) {
|
|
1042
|
+
return this.request(`/agent/remote/sessions/${encodeURIComponent(sessionId)}`);
|
|
1043
|
+
}
|
|
1044
|
+
async completeRemoteSession(sessionId) {
|
|
1045
|
+
return this.request(`/agent/remote/sessions/${encodeURIComponent(sessionId)}/complete`, {
|
|
1046
|
+
method: "POST",
|
|
1047
|
+
body: JSON.stringify({})
|
|
1048
|
+
});
|
|
1049
|
+
}
|
|
1050
|
+
/**
|
|
1051
|
+
* Issue a request that returns the raw `Response` (no JSON parsing, no
|
|
1052
|
+
* forced Content-Type). The caller sets `Content-Type`/`Accept` on `headers`
|
|
1053
|
+
* and reads the body itself (`arrayBuffer()` / `json()`).
|
|
1054
|
+
*
|
|
1055
|
+
* A single retry fires only on the same transient statuses `request()`
|
|
1056
|
+
* retries (authorizer-timeout 500 + LB 502/503/504) and transient network
|
|
1057
|
+
* errors — before the route handler runs — so re-issuing a POST does not
|
|
1058
|
+
* risk a duplicate side effect. Voice TTS/STT are effectively idempotent
|
|
1059
|
+
* (re-synthesize / re-transcribe) and meter server-side keyed on the
|
|
1060
|
+
* gateway requestId, so a retried transcription doesn't double-bill.
|
|
1061
|
+
*/
|
|
1062
|
+
async rawFetch(path, init) {
|
|
1063
|
+
const url = `${this.apiUrl}${path}`;
|
|
1064
|
+
init.headers.set("Authorization", `Bearer ${this.apiKey}`);
|
|
1065
|
+
let lastError;
|
|
1066
|
+
for (let attempt = 1; attempt <= 2; attempt++) try {
|
|
1067
|
+
const res = await fetch(url, {
|
|
1068
|
+
method: init.method,
|
|
1069
|
+
headers: init.headers,
|
|
1070
|
+
body: init.body,
|
|
1071
|
+
signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS)
|
|
1072
|
+
});
|
|
1073
|
+
if (!res.ok) {
|
|
1074
|
+
await res.text();
|
|
1075
|
+
const error = /* @__PURE__ */ new Error(`Agent API request failed (${String(res.status)})`);
|
|
1076
|
+
if (attempt === 1 && RETRYABLE_STATUS.has(res.status)) {
|
|
1077
|
+
lastError = error;
|
|
1078
|
+
await sleep(RETRY_DELAY_MS);
|
|
1079
|
+
continue;
|
|
1080
|
+
}
|
|
1081
|
+
throw error;
|
|
1082
|
+
}
|
|
1083
|
+
return res;
|
|
1084
|
+
} catch (err) {
|
|
1085
|
+
if (attempt === 1 && isRetryableNetworkError(err)) {
|
|
1086
|
+
lastError = err;
|
|
1087
|
+
await sleep(RETRY_DELAY_MS);
|
|
1088
|
+
continue;
|
|
1089
|
+
}
|
|
1090
|
+
throw err;
|
|
1091
|
+
}
|
|
1092
|
+
throw lastError instanceof Error ? lastError : new Error(String(lastError));
|
|
1093
|
+
}
|
|
1094
|
+
/**
|
|
1095
|
+
* Text-to-speech. Returns raw PCM audio bytes plus their framing — the
|
|
1096
|
+
* voice service defaults to 24 kHz / mono / 16-bit. Wrap in a WAV container
|
|
1097
|
+
* to produce a playable file. Metered per character against the tenant
|
|
1098
|
+
* credit pool server-side; TTS completes regardless of metering outcome.
|
|
1099
|
+
*/
|
|
1100
|
+
async tts(args) {
|
|
1101
|
+
const headers = new Headers();
|
|
1102
|
+
headers.set("Content-Type", "application/json");
|
|
1103
|
+
headers.set("Accept", "audio/pcm");
|
|
1104
|
+
const res = await this.rawFetch("/voice/tts", {
|
|
1105
|
+
method: "POST",
|
|
1106
|
+
headers,
|
|
1107
|
+
body: JSON.stringify(args)
|
|
1108
|
+
});
|
|
1109
|
+
return {
|
|
1110
|
+
audio: Buffer.from(await res.arrayBuffer()),
|
|
1111
|
+
sampleRate: parseInt(res.headers.get("x-sample-rate") ?? "24000", 10),
|
|
1112
|
+
channels: parseInt(res.headers.get("x-channels") ?? "1", 10),
|
|
1113
|
+
bitDepth: parseInt(res.headers.get("x-bit-depth") ?? "16", 10)
|
|
1114
|
+
};
|
|
1115
|
+
}
|
|
1116
|
+
/**
|
|
1117
|
+
* Speech-to-text. Accepts raw linear16 (16-bit LE) mono PCM — NOT a WAV or
|
|
1118
|
+
* other container (the endpoint transcribes with a fixed linear16 encoding,
|
|
1119
|
+
* so a container header would be transcribed as noise). Strip any WAV header
|
|
1120
|
+
* and pass `sampleRate` from it before calling. Metered by transcribed
|
|
1121
|
+
* duration against the tenant credit pool server-side.
|
|
1122
|
+
*/
|
|
1123
|
+
async stt(args) {
|
|
1124
|
+
const headers = new Headers();
|
|
1125
|
+
headers.set("Content-Type", "application/octet-stream");
|
|
1126
|
+
headers.set("x-sample-rate", String(args.sampleRate));
|
|
1127
|
+
return (await (await this.rawFetch("/voice/stt", {
|
|
1128
|
+
method: "POST",
|
|
1129
|
+
headers,
|
|
1130
|
+
body: args.audio
|
|
1131
|
+
})).json()).data;
|
|
1132
|
+
}
|
|
994
1133
|
};
|
|
995
1134
|
//#endregion
|
|
996
1135
|
exports.AgentApiClient = AgentApiClient;
|
package/dist/index.d.cts
CHANGED
|
@@ -6,6 +6,15 @@ interface AgentApiClientConfig {
|
|
|
6
6
|
apiKey: string;
|
|
7
7
|
apiUrl: string;
|
|
8
8
|
}
|
|
9
|
+
interface RemoteSessionInfo {
|
|
10
|
+
sessionId: string;
|
|
11
|
+
agentId: string;
|
|
12
|
+
surface: "browser" | "terminal";
|
|
13
|
+
status: "agent_driving" | "awaiting_human" | "human_in_control" | "resuming" | "completed" | "expired" | "failed";
|
|
14
|
+
url?: string;
|
|
15
|
+
instructions?: string;
|
|
16
|
+
requestedAt?: string;
|
|
17
|
+
}
|
|
9
18
|
interface SyncAgentInfo {
|
|
10
19
|
agentId: string;
|
|
11
20
|
tenantId: string;
|
|
@@ -146,6 +155,79 @@ interface KnowledgeDoc {
|
|
|
146
155
|
createdAt: string;
|
|
147
156
|
updatedAt: string;
|
|
148
157
|
}
|
|
158
|
+
/** Voice settings — core agent config. Mirrors `VoiceConfig` in `@alfe/types`. */
|
|
159
|
+
interface AgentVoiceConfig {
|
|
160
|
+
/** ElevenLabs voice ID; platform default when unset. */
|
|
161
|
+
voiceId?: string;
|
|
162
|
+
ttsModel?: string;
|
|
163
|
+
enabled?: boolean;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* The agent's own public identity, as returned by `updateSelf`, `generateAvatar`,
|
|
167
|
+
* `presignAvatar`'s finalize (`finalizeAvatar`). This is the public agent
|
|
168
|
+
* projection; only the identity-relevant fields are typed here — the response
|
|
169
|
+
* carries the full public agent record.
|
|
170
|
+
*/
|
|
171
|
+
interface AgentSelf {
|
|
172
|
+
agentId: string;
|
|
173
|
+
tenantId: string;
|
|
174
|
+
name: string;
|
|
175
|
+
avatarUrl?: string;
|
|
176
|
+
voiceConfig?: AgentVoiceConfig;
|
|
177
|
+
status: string;
|
|
178
|
+
}
|
|
179
|
+
/** Result of `presignAvatar` — the agent PUTs bytes to `uploadUrl`, then finalizes with `s3Key`. */
|
|
180
|
+
interface AgentAvatarPresign {
|
|
181
|
+
/** Presigned PUT URL to upload the image bytes to. */
|
|
182
|
+
uploadUrl: string;
|
|
183
|
+
/** Object key — echoed back to `finalizeAvatar`. */
|
|
184
|
+
s3Key: string;
|
|
185
|
+
/** Stable public URL the avatar will be served from once finalized. */
|
|
186
|
+
publicUrl: string;
|
|
187
|
+
/** ISO expiry of the presigned PUT URL. */
|
|
188
|
+
expiresAt: string;
|
|
189
|
+
}
|
|
190
|
+
/** A voice in the platform catalogue (ElevenLabs), from `listVoices`. */
|
|
191
|
+
interface AgentVoice {
|
|
192
|
+
id: string;
|
|
193
|
+
name: string;
|
|
194
|
+
previewUrl: string;
|
|
195
|
+
description: string;
|
|
196
|
+
labels: Record<string, string>;
|
|
197
|
+
category: string;
|
|
198
|
+
}
|
|
199
|
+
/** The ElevenLabs models with a pricing row — the TTS endpoint rejects any other value. */
|
|
200
|
+
type VoiceTtsModel = "eleven_turbo_v2_5" | "eleven_multilingual_v2";
|
|
201
|
+
interface VoiceTtsArgs {
|
|
202
|
+
/** Text to synthesize (1–5000 chars — the endpoint enforces this). */
|
|
203
|
+
text: string;
|
|
204
|
+
/** ElevenLabs voice id; platform default when unset. */
|
|
205
|
+
voiceId?: string;
|
|
206
|
+
/** TTS model; `eleven_turbo_v2_5` (lower latency) when unset. */
|
|
207
|
+
model?: VoiceTtsModel;
|
|
208
|
+
}
|
|
209
|
+
/** Raw synthesized audio plus its PCM framing (from the response headers). */
|
|
210
|
+
interface VoiceTtsResult {
|
|
211
|
+
/** Raw little-endian PCM samples — no container. Wrap in WAV to make a playable file. */
|
|
212
|
+
audio: Buffer;
|
|
213
|
+
/** Samples per second (e.g. 24000). */
|
|
214
|
+
sampleRate: number;
|
|
215
|
+
/** Channel count (mono = 1). */
|
|
216
|
+
channels: number;
|
|
217
|
+
/** Bits per sample (e.g. 16). */
|
|
218
|
+
bitDepth: number;
|
|
219
|
+
}
|
|
220
|
+
interface VoiceSttArgs {
|
|
221
|
+
/** Raw linear16 (16-bit little-endian) mono PCM samples — no WAV/container header. */
|
|
222
|
+
audio: Uint8Array;
|
|
223
|
+
/** Sample rate of `audio` in Hz (8000–48000). */
|
|
224
|
+
sampleRate: number;
|
|
225
|
+
}
|
|
226
|
+
interface VoiceSttResult {
|
|
227
|
+
text: string;
|
|
228
|
+
/** Deepgram confidence in (0,1]. */
|
|
229
|
+
confidence: number;
|
|
230
|
+
}
|
|
149
231
|
declare class AgentApiClient {
|
|
150
232
|
private readonly apiKey;
|
|
151
233
|
private readonly apiUrl;
|
|
@@ -669,6 +751,35 @@ declare class AgentApiClient {
|
|
|
669
751
|
}): Promise<{
|
|
670
752
|
recorded: boolean;
|
|
671
753
|
}>;
|
|
754
|
+
/** Update the agent's own name and/or voice config. Returns the updated agent. */
|
|
755
|
+
updateSelf(update: {
|
|
756
|
+
name?: string;
|
|
757
|
+
voiceConfig?: AgentVoiceConfig;
|
|
758
|
+
}): Promise<AgentSelf>;
|
|
759
|
+
/**
|
|
760
|
+
* Generate the agent's own avatar from a text prompt. The image is generated,
|
|
761
|
+
* stored, and set on the agent server-side; returns the updated agent.
|
|
762
|
+
*/
|
|
763
|
+
generateAvatar(args: {
|
|
764
|
+
prompt: string;
|
|
765
|
+
}): Promise<AgentSelf>;
|
|
766
|
+
/**
|
|
767
|
+
* Get a presigned PUT URL to upload a new avatar image. Upload the bytes to
|
|
768
|
+
* `uploadUrl`, then call `finalizeAvatar(s3Key)` to set it on the agent.
|
|
769
|
+
*/
|
|
770
|
+
presignAvatar(args: {
|
|
771
|
+
mimeType: string;
|
|
772
|
+
size: number;
|
|
773
|
+
}): Promise<AgentAvatarPresign>;
|
|
774
|
+
/**
|
|
775
|
+
* Finalize an avatar upload — validates ownership + size, then sets the
|
|
776
|
+
* agent's `avatarUrl` server-side. Returns the updated agent.
|
|
777
|
+
*/
|
|
778
|
+
finalizeAvatar(s3Key: string): Promise<AgentSelf>;
|
|
779
|
+
/** List the platform voice catalogue (ElevenLabs) so the agent can pick its own voice. */
|
|
780
|
+
listVoices(): Promise<{
|
|
781
|
+
voices: AgentVoice[];
|
|
782
|
+
}>;
|
|
672
783
|
/**
|
|
673
784
|
* Mint a fresh AES-256 data key for a specific (secret, field) pair. The
|
|
674
785
|
* encryption context is rebuilt server-side from `auth.tenantId` + the body
|
|
@@ -1163,8 +1274,48 @@ declare class AgentApiClient {
|
|
|
1163
1274
|
operation: string;
|
|
1164
1275
|
summary?: string;
|
|
1165
1276
|
}): Promise<void>;
|
|
1277
|
+
requestBrowserTakeover(args: {
|
|
1278
|
+
instructions: string;
|
|
1279
|
+
url?: string;
|
|
1280
|
+
conversationId?: string;
|
|
1281
|
+
}): Promise<{
|
|
1282
|
+
sessionId: string;
|
|
1283
|
+
status: string;
|
|
1284
|
+
}>;
|
|
1285
|
+
getRemoteSession(sessionId: string): Promise<RemoteSessionInfo>;
|
|
1286
|
+
completeRemoteSession(sessionId: string): Promise<{
|
|
1287
|
+
ok: boolean;
|
|
1288
|
+
}>;
|
|
1289
|
+
/**
|
|
1290
|
+
* Issue a request that returns the raw `Response` (no JSON parsing, no
|
|
1291
|
+
* forced Content-Type). The caller sets `Content-Type`/`Accept` on `headers`
|
|
1292
|
+
* and reads the body itself (`arrayBuffer()` / `json()`).
|
|
1293
|
+
*
|
|
1294
|
+
* A single retry fires only on the same transient statuses `request()`
|
|
1295
|
+
* retries (authorizer-timeout 500 + LB 502/503/504) and transient network
|
|
1296
|
+
* errors — before the route handler runs — so re-issuing a POST does not
|
|
1297
|
+
* risk a duplicate side effect. Voice TTS/STT are effectively idempotent
|
|
1298
|
+
* (re-synthesize / re-transcribe) and meter server-side keyed on the
|
|
1299
|
+
* gateway requestId, so a retried transcription doesn't double-bill.
|
|
1300
|
+
*/
|
|
1301
|
+
private rawFetch;
|
|
1302
|
+
/**
|
|
1303
|
+
* Text-to-speech. Returns raw PCM audio bytes plus their framing — the
|
|
1304
|
+
* voice service defaults to 24 kHz / mono / 16-bit. Wrap in a WAV container
|
|
1305
|
+
* to produce a playable file. Metered per character against the tenant
|
|
1306
|
+
* credit pool server-side; TTS completes regardless of metering outcome.
|
|
1307
|
+
*/
|
|
1308
|
+
tts(args: VoiceTtsArgs): Promise<VoiceTtsResult>;
|
|
1309
|
+
/**
|
|
1310
|
+
* Speech-to-text. Accepts raw linear16 (16-bit LE) mono PCM — NOT a WAV or
|
|
1311
|
+
* other container (the endpoint transcribes with a fixed linear16 encoding,
|
|
1312
|
+
* so a container header would be transcribed as noise). Strip any WAV header
|
|
1313
|
+
* and pass `sampleRate` from it before calling. Metered by transcribed
|
|
1314
|
+
* duration against the tenant credit pool server-side.
|
|
1315
|
+
*/
|
|
1316
|
+
stt(args: VoiceSttArgs): Promise<VoiceSttResult>;
|
|
1166
1317
|
}
|
|
1167
1318
|
//# sourceMappingURL=index.d.ts.map
|
|
1168
1319
|
//#endregion
|
|
1169
|
-
export { AgentApiClient, AgentApiClientConfig, type ChangelogAction, type ChangelogActor, type ChangelogEntry, type EncryptedEnvelopeV1, type Field, type FieldEnvelope, type FieldFormat, type FieldSensitivity, type FieldView, type GeneratedDataKey, type IntegrationConfigResult, type IntegrationConfigSchemaField, type IntegrationInstall, KnowledgeDoc, KnowledgeFact, KnowledgeProfile, KnowledgeProfileLink, KnowledgeScope, KnowledgeScopeType, KnowledgeSearchHit, KnowledgeSearchResult, type RegistryEntry, type ScopeInfo, type SecretAggregate, type SecretCategory, type SecretMetadata, type SecretScope, SharedFileEntry, SyncAgentInfo, SyncAgentStats, SyncConfirmedUpload, SyncFileEntry, SyncManifest, SyncManifestEntry, SyncPresignedUrl, SyncReconstructBundle, SyncReconstructFile, SyncSessionContent, SyncSessionEntry };
|
|
1320
|
+
export { AgentApiClient, AgentApiClientConfig, AgentAvatarPresign, AgentSelf, AgentVoice, AgentVoiceConfig, type ChangelogAction, type ChangelogActor, type ChangelogEntry, type EncryptedEnvelopeV1, type Field, type FieldEnvelope, type FieldFormat, type FieldSensitivity, type FieldView, type GeneratedDataKey, type IntegrationConfigResult, type IntegrationConfigSchemaField, type IntegrationInstall, KnowledgeDoc, KnowledgeFact, KnowledgeProfile, KnowledgeProfileLink, KnowledgeScope, KnowledgeScopeType, KnowledgeSearchHit, KnowledgeSearchResult, type RegistryEntry, RemoteSessionInfo, type ScopeInfo, type SecretAggregate, type SecretCategory, type SecretMetadata, type SecretScope, SharedFileEntry, SyncAgentInfo, SyncAgentStats, SyncConfirmedUpload, SyncFileEntry, SyncManifest, SyncManifestEntry, SyncPresignedUrl, SyncReconstructBundle, SyncReconstructFile, SyncSessionContent, SyncSessionEntry, VoiceSttArgs, VoiceSttResult, VoiceTtsArgs, VoiceTtsModel, VoiceTtsResult };
|
|
1170
1321
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,15 @@ interface AgentApiClientConfig {
|
|
|
6
6
|
apiKey: string;
|
|
7
7
|
apiUrl: string;
|
|
8
8
|
}
|
|
9
|
+
interface RemoteSessionInfo {
|
|
10
|
+
sessionId: string;
|
|
11
|
+
agentId: string;
|
|
12
|
+
surface: "browser" | "terminal";
|
|
13
|
+
status: "agent_driving" | "awaiting_human" | "human_in_control" | "resuming" | "completed" | "expired" | "failed";
|
|
14
|
+
url?: string;
|
|
15
|
+
instructions?: string;
|
|
16
|
+
requestedAt?: string;
|
|
17
|
+
}
|
|
9
18
|
interface SyncAgentInfo {
|
|
10
19
|
agentId: string;
|
|
11
20
|
tenantId: string;
|
|
@@ -146,6 +155,79 @@ interface KnowledgeDoc {
|
|
|
146
155
|
createdAt: string;
|
|
147
156
|
updatedAt: string;
|
|
148
157
|
}
|
|
158
|
+
/** Voice settings — core agent config. Mirrors `VoiceConfig` in `@alfe/types`. */
|
|
159
|
+
interface AgentVoiceConfig {
|
|
160
|
+
/** ElevenLabs voice ID; platform default when unset. */
|
|
161
|
+
voiceId?: string;
|
|
162
|
+
ttsModel?: string;
|
|
163
|
+
enabled?: boolean;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* The agent's own public identity, as returned by `updateSelf`, `generateAvatar`,
|
|
167
|
+
* `presignAvatar`'s finalize (`finalizeAvatar`). This is the public agent
|
|
168
|
+
* projection; only the identity-relevant fields are typed here — the response
|
|
169
|
+
* carries the full public agent record.
|
|
170
|
+
*/
|
|
171
|
+
interface AgentSelf {
|
|
172
|
+
agentId: string;
|
|
173
|
+
tenantId: string;
|
|
174
|
+
name: string;
|
|
175
|
+
avatarUrl?: string;
|
|
176
|
+
voiceConfig?: AgentVoiceConfig;
|
|
177
|
+
status: string;
|
|
178
|
+
}
|
|
179
|
+
/** Result of `presignAvatar` — the agent PUTs bytes to `uploadUrl`, then finalizes with `s3Key`. */
|
|
180
|
+
interface AgentAvatarPresign {
|
|
181
|
+
/** Presigned PUT URL to upload the image bytes to. */
|
|
182
|
+
uploadUrl: string;
|
|
183
|
+
/** Object key — echoed back to `finalizeAvatar`. */
|
|
184
|
+
s3Key: string;
|
|
185
|
+
/** Stable public URL the avatar will be served from once finalized. */
|
|
186
|
+
publicUrl: string;
|
|
187
|
+
/** ISO expiry of the presigned PUT URL. */
|
|
188
|
+
expiresAt: string;
|
|
189
|
+
}
|
|
190
|
+
/** A voice in the platform catalogue (ElevenLabs), from `listVoices`. */
|
|
191
|
+
interface AgentVoice {
|
|
192
|
+
id: string;
|
|
193
|
+
name: string;
|
|
194
|
+
previewUrl: string;
|
|
195
|
+
description: string;
|
|
196
|
+
labels: Record<string, string>;
|
|
197
|
+
category: string;
|
|
198
|
+
}
|
|
199
|
+
/** The ElevenLabs models with a pricing row — the TTS endpoint rejects any other value. */
|
|
200
|
+
type VoiceTtsModel = "eleven_turbo_v2_5" | "eleven_multilingual_v2";
|
|
201
|
+
interface VoiceTtsArgs {
|
|
202
|
+
/** Text to synthesize (1–5000 chars — the endpoint enforces this). */
|
|
203
|
+
text: string;
|
|
204
|
+
/** ElevenLabs voice id; platform default when unset. */
|
|
205
|
+
voiceId?: string;
|
|
206
|
+
/** TTS model; `eleven_turbo_v2_5` (lower latency) when unset. */
|
|
207
|
+
model?: VoiceTtsModel;
|
|
208
|
+
}
|
|
209
|
+
/** Raw synthesized audio plus its PCM framing (from the response headers). */
|
|
210
|
+
interface VoiceTtsResult {
|
|
211
|
+
/** Raw little-endian PCM samples — no container. Wrap in WAV to make a playable file. */
|
|
212
|
+
audio: Buffer;
|
|
213
|
+
/** Samples per second (e.g. 24000). */
|
|
214
|
+
sampleRate: number;
|
|
215
|
+
/** Channel count (mono = 1). */
|
|
216
|
+
channels: number;
|
|
217
|
+
/** Bits per sample (e.g. 16). */
|
|
218
|
+
bitDepth: number;
|
|
219
|
+
}
|
|
220
|
+
interface VoiceSttArgs {
|
|
221
|
+
/** Raw linear16 (16-bit little-endian) mono PCM samples — no WAV/container header. */
|
|
222
|
+
audio: Uint8Array;
|
|
223
|
+
/** Sample rate of `audio` in Hz (8000–48000). */
|
|
224
|
+
sampleRate: number;
|
|
225
|
+
}
|
|
226
|
+
interface VoiceSttResult {
|
|
227
|
+
text: string;
|
|
228
|
+
/** Deepgram confidence in (0,1]. */
|
|
229
|
+
confidence: number;
|
|
230
|
+
}
|
|
149
231
|
declare class AgentApiClient {
|
|
150
232
|
private readonly apiKey;
|
|
151
233
|
private readonly apiUrl;
|
|
@@ -669,6 +751,35 @@ declare class AgentApiClient {
|
|
|
669
751
|
}): Promise<{
|
|
670
752
|
recorded: boolean;
|
|
671
753
|
}>;
|
|
754
|
+
/** Update the agent's own name and/or voice config. Returns the updated agent. */
|
|
755
|
+
updateSelf(update: {
|
|
756
|
+
name?: string;
|
|
757
|
+
voiceConfig?: AgentVoiceConfig;
|
|
758
|
+
}): Promise<AgentSelf>;
|
|
759
|
+
/**
|
|
760
|
+
* Generate the agent's own avatar from a text prompt. The image is generated,
|
|
761
|
+
* stored, and set on the agent server-side; returns the updated agent.
|
|
762
|
+
*/
|
|
763
|
+
generateAvatar(args: {
|
|
764
|
+
prompt: string;
|
|
765
|
+
}): Promise<AgentSelf>;
|
|
766
|
+
/**
|
|
767
|
+
* Get a presigned PUT URL to upload a new avatar image. Upload the bytes to
|
|
768
|
+
* `uploadUrl`, then call `finalizeAvatar(s3Key)` to set it on the agent.
|
|
769
|
+
*/
|
|
770
|
+
presignAvatar(args: {
|
|
771
|
+
mimeType: string;
|
|
772
|
+
size: number;
|
|
773
|
+
}): Promise<AgentAvatarPresign>;
|
|
774
|
+
/**
|
|
775
|
+
* Finalize an avatar upload — validates ownership + size, then sets the
|
|
776
|
+
* agent's `avatarUrl` server-side. Returns the updated agent.
|
|
777
|
+
*/
|
|
778
|
+
finalizeAvatar(s3Key: string): Promise<AgentSelf>;
|
|
779
|
+
/** List the platform voice catalogue (ElevenLabs) so the agent can pick its own voice. */
|
|
780
|
+
listVoices(): Promise<{
|
|
781
|
+
voices: AgentVoice[];
|
|
782
|
+
}>;
|
|
672
783
|
/**
|
|
673
784
|
* Mint a fresh AES-256 data key for a specific (secret, field) pair. The
|
|
674
785
|
* encryption context is rebuilt server-side from `auth.tenantId` + the body
|
|
@@ -1163,8 +1274,48 @@ declare class AgentApiClient {
|
|
|
1163
1274
|
operation: string;
|
|
1164
1275
|
summary?: string;
|
|
1165
1276
|
}): Promise<void>;
|
|
1277
|
+
requestBrowserTakeover(args: {
|
|
1278
|
+
instructions: string;
|
|
1279
|
+
url?: string;
|
|
1280
|
+
conversationId?: string;
|
|
1281
|
+
}): Promise<{
|
|
1282
|
+
sessionId: string;
|
|
1283
|
+
status: string;
|
|
1284
|
+
}>;
|
|
1285
|
+
getRemoteSession(sessionId: string): Promise<RemoteSessionInfo>;
|
|
1286
|
+
completeRemoteSession(sessionId: string): Promise<{
|
|
1287
|
+
ok: boolean;
|
|
1288
|
+
}>;
|
|
1289
|
+
/**
|
|
1290
|
+
* Issue a request that returns the raw `Response` (no JSON parsing, no
|
|
1291
|
+
* forced Content-Type). The caller sets `Content-Type`/`Accept` on `headers`
|
|
1292
|
+
* and reads the body itself (`arrayBuffer()` / `json()`).
|
|
1293
|
+
*
|
|
1294
|
+
* A single retry fires only on the same transient statuses `request()`
|
|
1295
|
+
* retries (authorizer-timeout 500 + LB 502/503/504) and transient network
|
|
1296
|
+
* errors — before the route handler runs — so re-issuing a POST does not
|
|
1297
|
+
* risk a duplicate side effect. Voice TTS/STT are effectively idempotent
|
|
1298
|
+
* (re-synthesize / re-transcribe) and meter server-side keyed on the
|
|
1299
|
+
* gateway requestId, so a retried transcription doesn't double-bill.
|
|
1300
|
+
*/
|
|
1301
|
+
private rawFetch;
|
|
1302
|
+
/**
|
|
1303
|
+
* Text-to-speech. Returns raw PCM audio bytes plus their framing — the
|
|
1304
|
+
* voice service defaults to 24 kHz / mono / 16-bit. Wrap in a WAV container
|
|
1305
|
+
* to produce a playable file. Metered per character against the tenant
|
|
1306
|
+
* credit pool server-side; TTS completes regardless of metering outcome.
|
|
1307
|
+
*/
|
|
1308
|
+
tts(args: VoiceTtsArgs): Promise<VoiceTtsResult>;
|
|
1309
|
+
/**
|
|
1310
|
+
* Speech-to-text. Accepts raw linear16 (16-bit LE) mono PCM — NOT a WAV or
|
|
1311
|
+
* other container (the endpoint transcribes with a fixed linear16 encoding,
|
|
1312
|
+
* so a container header would be transcribed as noise). Strip any WAV header
|
|
1313
|
+
* and pass `sampleRate` from it before calling. Metered by transcribed
|
|
1314
|
+
* duration against the tenant credit pool server-side.
|
|
1315
|
+
*/
|
|
1316
|
+
stt(args: VoiceSttArgs): Promise<VoiceSttResult>;
|
|
1166
1317
|
}
|
|
1167
1318
|
//# sourceMappingURL=index.d.ts.map
|
|
1168
1319
|
//#endregion
|
|
1169
|
-
export { AgentApiClient, AgentApiClientConfig, type ChangelogAction, type ChangelogActor, type ChangelogEntry, type EncryptedEnvelopeV1, type Field, type FieldEnvelope, type FieldFormat, type FieldSensitivity, type FieldView, type GeneratedDataKey, type IntegrationConfigResult, type IntegrationConfigSchemaField, type IntegrationInstall, KnowledgeDoc, KnowledgeFact, KnowledgeProfile, KnowledgeProfileLink, KnowledgeScope, KnowledgeScopeType, KnowledgeSearchHit, KnowledgeSearchResult, type RegistryEntry, type ScopeInfo, type SecretAggregate, type SecretCategory, type SecretMetadata, type SecretScope, SharedFileEntry, SyncAgentInfo, SyncAgentStats, SyncConfirmedUpload, SyncFileEntry, SyncManifest, SyncManifestEntry, SyncPresignedUrl, SyncReconstructBundle, SyncReconstructFile, SyncSessionContent, SyncSessionEntry };
|
|
1320
|
+
export { AgentApiClient, AgentApiClientConfig, AgentAvatarPresign, AgentSelf, AgentVoice, AgentVoiceConfig, type ChangelogAction, type ChangelogActor, type ChangelogEntry, type EncryptedEnvelopeV1, type Field, type FieldEnvelope, type FieldFormat, type FieldSensitivity, type FieldView, type GeneratedDataKey, type IntegrationConfigResult, type IntegrationConfigSchemaField, type IntegrationInstall, KnowledgeDoc, KnowledgeFact, KnowledgeProfile, KnowledgeProfileLink, KnowledgeScope, KnowledgeScopeType, KnowledgeSearchHit, KnowledgeSearchResult, type RegistryEntry, RemoteSessionInfo, type ScopeInfo, type SecretAggregate, type SecretCategory, type SecretMetadata, type SecretScope, SharedFileEntry, SyncAgentInfo, SyncAgentStats, SyncConfirmedUpload, SyncFileEntry, SyncManifest, SyncManifestEntry, SyncPresignedUrl, SyncReconstructBundle, SyncReconstructFile, SyncSessionContent, SyncSessionEntry, VoiceSttArgs, VoiceSttResult, VoiceTtsArgs, VoiceTtsModel, VoiceTtsResult };
|
|
1170
1321
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"mappings":"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"}
|