├── .gitignore ├── GPT4All Lib Eg.ipynb ├── README.md ├── app-chain.py ├── app-comparison.py ├── app.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | app.py 2 | nonopenai 3 | .ipynb_checkpoints 4 | -------------------------------------------------------------------------------- /GPT4All Lib Eg.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromtEngineer/Nopenai/HEAD/GPT4All Lib Eg.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromtEngineer/Nopenai/HEAD/README.md -------------------------------------------------------------------------------- /app-chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromtEngineer/Nopenai/HEAD/app-chain.py -------------------------------------------------------------------------------- /app-comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromtEngineer/Nopenai/HEAD/app-comparison.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromtEngineer/Nopenai/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromtEngineer/Nopenai/HEAD/requirements.txt --------------------------------------------------------------------------------