@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
25 lines (24 loc) • 895 B
TypeScript
import type { PromptbookAgentIntegrationProps } from './PromptbookAgentIntegration';
/**
* Props of PromptbookAgentSeamlessIntegration.
*
* @private
*/
type PromptbookAgentSeamlessIntegrationProps = Omit<PromptbookAgentIntegrationProps, 'formfactor'> & {
/**
* Use iframe instead of implementing the chat directly
*
* When `true`, the chat will be rendered in an iframe pointing to the agent's chat endpoint.
* When `false`, the chat will be rendered directly using React components.
*
* @default false
*/
readonly isIframeUsed?: boolean;
};
/**
* Renders a floating agent button that opens a chat window with the remote agent.
*
* @private component of PromptbookAgentIntegration
*/
export declare function PromptbookAgentSeamlessIntegration(props: PromptbookAgentSeamlessIntegrationProps): import("react/jsx-runtime").JSX.Element;
export {};