from chonkie import JSONPorterfrom chonkie.types.base import Chunkchunks = [ Chunk( id="chunk1", text="This is the first chunk.", metadata={"source": "document1.txt"} ), Chunk( id="chunk2", text="This is the second chunk.", metadata={"source": "document2.txt"} )]porter = JSONPorter()porter.export(chunks)