@telnyx/ai-agent-lib 0.1.5 → 0.1.7
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 +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/index.js +386 -382
- package/dist/message.d.ts +9 -4
- package/dist/types.d.ts +5 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -331,7 +331,7 @@ This library is built with TypeScript and provides full type definitions. All ho
|
|
|
331
331
|
|
|
332
332
|
## Examples
|
|
333
333
|
|
|
334
|
-
Check out the
|
|
334
|
+
Check out the [example](https://github.com/team-telnyx/telnyx-ai-agent-lib-example) repository for a complete example application demonstrating all features of the library.
|
|
335
335
|
|
|
336
336
|
## Dependencies
|
|
337
337
|
|
package/dist/client.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare class TelnyxAIAgent extends EventEmitter<AIAgentEvents> {
|
|
|
16
16
|
constructor(params: TelnyxAIAgentConstructorParams);
|
|
17
17
|
connect(): Promise<void>;
|
|
18
18
|
disconnect(): Promise<void>;
|
|
19
|
-
sendConversationMessage(message: string): void;
|
|
19
|
+
sendConversationMessage(message: string, attachments?: string[]): void;
|
|
20
20
|
get transcript(): TranscriptItem[];
|
|
21
21
|
startConversation(): Promise<void>;
|
|
22
22
|
endConversation(): void | undefined;
|