Closed Jake-Samuels closed 3 months ago
This isn't running in a node server and it doesn't have access to the filesystem. The conversations are already being written to the database - you could write to another table in a different format, if you want it in a different format than it's already in? You can dump the database with just convex export
and there will be a .jsonl
file with the messages, but you'll have to connect them with their associated conversations. make sense?
I'm trying to import FS in order to write the outputs of each conversation to a JSON file, but importing the FS module returns the following error:
X [ERROR] Could not resolve "fs"
The package "fs" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
Any ideas how to fix this? I've tried adding FS directly to the node_modules directory but it isn't able to import it.