├── .env.template ├── .gitignore ├── LICENSE ├── README.md ├── doc ├── AP202004071377674610.txt ├── AP202103211474441941.txt ├── AP202106081496723899.txt ├── AP202109131515970928.txt ├── AP202112191535558252.txt ├── AP202205161565947448.txt ├── AP202207041575752173.txt ├── AP202207151576166615.txt ├── AP202207181576270728.txt ├── AP202208011576746576.txt ├── AP202208111577116603.txt ├── AP202209131578317570.txt ├── AP202209261578671988.txt ├── AP202210101579024587.txt └── AP202210101579029036.txt ├── docs.index ├── example.png ├── faiss_store.pkl ├── ingest.py ├── qa_test.py ├── requirements.txt └── web.py /.env.template: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=sk-xxx -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/README.md -------------------------------------------------------------------------------- /doc/AP202004071377674610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202004071377674610.txt -------------------------------------------------------------------------------- /doc/AP202103211474441941.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202103211474441941.txt -------------------------------------------------------------------------------- /doc/AP202106081496723899.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202106081496723899.txt -------------------------------------------------------------------------------- /doc/AP202109131515970928.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202109131515970928.txt -------------------------------------------------------------------------------- /doc/AP202112191535558252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202112191535558252.txt -------------------------------------------------------------------------------- /doc/AP202205161565947448.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202205161565947448.txt -------------------------------------------------------------------------------- /doc/AP202207041575752173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202207041575752173.txt -------------------------------------------------------------------------------- /doc/AP202207151576166615.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202207151576166615.txt -------------------------------------------------------------------------------- /doc/AP202207181576270728.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202207181576270728.txt -------------------------------------------------------------------------------- /doc/AP202208011576746576.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202208011576746576.txt -------------------------------------------------------------------------------- /doc/AP202208111577116603.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202208111577116603.txt -------------------------------------------------------------------------------- /doc/AP202209131578317570.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202209131578317570.txt -------------------------------------------------------------------------------- /doc/AP202209261578671988.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202209261578671988.txt -------------------------------------------------------------------------------- /doc/AP202210101579024587.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202210101579024587.txt -------------------------------------------------------------------------------- /doc/AP202210101579029036.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/doc/AP202210101579029036.txt -------------------------------------------------------------------------------- /docs.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/docs.index -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/example.png -------------------------------------------------------------------------------- /faiss_store.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/faiss_store.pkl -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/ingest.py -------------------------------------------------------------------------------- /qa_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/qa_test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/requirements.txt -------------------------------------------------------------------------------- /web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/frr-qa/HEAD/web.py --------------------------------------------------------------------------------