For the complete documentation index, see llms.txt. This page is also available as Markdown.

RSF

RSF is very similar to RSV except it works on file level.

Pseudocode

The procedure to generate a RSF file is as follows:

def create_rsf(plaintext):
    deflated_bytes = zlib.compress(plaintext, level=9)
    
    # Server stores this part and will send it to the client when zoning-in
    header = deflated_bytes[:64]
    
    # Client stores this part
    body = deflated_bytes[64:]

Last updated

Was this helpful?