auto-gpt-ts
Version:
my take of Auto-GPT in typescript
5 lines (4 loc) • 354 B
TypeScript
export declare function extractCharPosition(error_message: string): number;
export declare function validateJson(jsonObj: object, schemaName: string): object | null;
export declare function validateJsonString(json_string: string, schema_name: string): object;
export declare function isStringValidJson(json_string: string, schema_name: string): boolean;