Type Alias VincentAppDef

VincentAppDef: {
    id: string;
    name: string;
    tools: Record<
        string,
        {
            description: string;
            name: string;
            parameters: {
                description: string;
                name: string;
                type: | "string"
                | "number"
                | "number_array"
                | "bool"
                | "bool_array"
                | "address"
                | "address_array"
                | "string_array"
                | "bytes"
                | "bytes_array";
            }[];
        },
    >;
    version: string;
}

Type representing a Vincent application

Type declaration

  • id: string
  • name: string
  • tools: Record<
        string,
        {
            description: string;
            name: string;
            parameters: {
                description: string;
                name: string;
                type: | "string"
                | "number"
                | "number_array"
                | "bool"
                | "bool_array"
                | "address"
                | "address_array"
                | "string_array"
                | "bytes"
                | "bytes_array";
            }[];
        },
    >
  • version: string