PromtEngineer / localGPT

Chat with your documents on your local device using GPT models. No data leaves your device and 100% private.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ingestion Error / Batch processing

lavericklavericklaverick opened this issue · comments

Im attempting to process a large number of pdf files, however it crashes my computer when i do this.

Therefore i create a script that copies a few files to source_documents folder and then attempts to run ingest.py, however it appears that it does not like being run from a separate script.

`executor task failed:
An attempt has been made to start a new process before the
current process has finished its bootstrapping phase.

    This probably means that you are not using fork to start your
    child processes and you have forgotten to use the proper idiom
    in the main module:

        if __name__ == '__main__':
            freeze_support()
            ...

    The "freeze_support()" line can be omitted if the program
    is not going to be frozen to produce an executable.

`
Does anyone know if its possible to run ingest from another script?

@lavericklavericklaverick look into the crawl.py file. That will help.

Many thanks