We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I should be able to import BedrockInlineAgent and BedrockInlineAgentOptions using the following:
import { BedrockInlineAgent, type BedrockInlineAgentOptions } from 'multi-agent-orchestrator';
This is not working as both BedrockInlineAgent and BedrockInlineAgentOptions are not exxported inside the index.d.ts.
Adding the following to the index.d.ts is solving the issue:
export { BedrockInlineAgent, BedrockInlineAgentOptions } from './agents/bedrockInlineAgent';
The text was updated successfully, but these errors were encountered:
fixed in #159 it will be release soon
Sorry, something went wrong.
No branches or pull requests
Expected Behaviour
I should be able to import BedrockInlineAgent and BedrockInlineAgentOptions using the following:
Current Behaviour
This is not working as both BedrockInlineAgent and BedrockInlineAgentOptions are not exxported inside the index.d.ts.
Code snippet
Possible Solution
Adding the following to the index.d.ts is solving the issue:
Steps to Reproduce
The text was updated successfully, but these errors were encountered: