Variable utilConst

util: {
    add_embeddings: ((e: Entity) => Promise<EntityWithEmbeddings>);
    check_for_eid: ((eid: string, client?: Surreal) => Promise<boolean>);
    check_for_rid: ((rid: string, client?: Surreal) => Promise<boolean>);
    eid_to_uuid: ((eid: string) => Promise<string>);
    uuid_from_sha256: ((text: string) => Promise<string>);
} = ...