Skip to content

Commit

Permalink
grrr
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolk committed Sep 4, 2024
1 parent 908003d commit 0eb5deb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ai-constructs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ declare namespace runtime {
ExecutableTool,
handleConversationTurnEvent,
ToolDefinition,
ToolExecutionInput,
ToolInputSchema,
ToolResultContentBlock
}
Expand All @@ -120,16 +121,15 @@ type ToolDefinition = {
inputSchema: ToolInputSchema;
};

// @public (undocumented)
type ToolExecutionInput = smithy.DocumentType;

// @public (undocumented)
type ToolInputSchema = bedrock.ToolInputSchema;

// @public (undocumented)
type ToolResultContentBlock = bedrock.ToolResultContentBlock;

// Warnings were encountered during analysis:
//
// src/conversation/runtime/types.ts:69:3 - (ae-forgotten-export) The symbol "ToolExecutionInput" needs to be exported by the entry point index.d.ts

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions packages/ai-constructs/src/conversation/runtime/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
ConversationTurnEvent,
ExecutableTool,
ToolDefinition,
ToolExecutionInput,
ToolInputSchema,
ToolResultContentBlock,
} from './types.js';
Expand All @@ -17,6 +18,7 @@ export {
ExecutableTool,
handleConversationTurnEvent,
ToolDefinition,
ToolExecutionInput,
ToolInputSchema,
ToolResultContentBlock,
};

0 comments on commit 0eb5deb

Please sign in to comment.