quantum-cli-core
Version:
Quantum CLI Core - Multi-LLM Collaboration System
16 lines • 484 B
JavaScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export function isFunctionResponse(content) {
return (content.role === 'user' &&
!!content.parts &&
content.parts.every((part) => !!part.functionResponse));
}
export function isFunctionCall(content) {
return (content.role === 'model' &&
!!content.parts &&
content.parts.every((part) => !!part.functionCall));
}
//# sourceMappingURL=messageInspectors.js.map