@datalayer/core
Version:
**Datalayer Core**
18 lines (17 loc) • 370 B
TypeScript
/**
* AI Agent model
*/
export type IAIAgent = {
/**
* ID of the document monitored by the agent.
*/
documentId: string;
/**
* ID of the runtime connected to the agent.
*
* This is not the name of the remote pod but
* the Jupyter Kernel ID of the process within it.
*/
runtimeId?: string;
};
export default IAIAgent;