/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { ToolCategory } from './ToolCategory'; export type ToolResponse = { readonly id: number; name: string; display_name?: string; slug?: string; readonly category: ToolCategory; description?: string | null; logo?: string | null; metadata?: any; allow_base_agent?: boolean; allow_openai_agent?: boolean; allow_openai_assistant?: boolean; allow_google_agent?: boolean; readonly is_allowed: string; };