/**
 * This interface is intended to be the base for all tool parameters that are generated by a GPT.
 */
export interface BaseToolGptParameters {
    /**
     * The reason why this particular action is being taken. It MUST relate to the overall objective.
     */
    rationale: string;
}
//# sourceMappingURL=BaseToolGptParameters.d.ts.map