/** * A model that represents an agent dependent on a knowledge base/tools * to which the user has no direct access. */ export interface DependentUnknownAgentIdentifier { /** If the agent is a transitive dependent, contains IDs of the resources that the agent depends on directly. */ referencedResourceIds?: string[]; }