├── .gitattributes ├── .github └── workflows │ └── hf_sync.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── autoquizzer.png ├── backend ├── custom_components.py ├── pipelines.py └── utils.py ├── notebooks └── auto_quizzer_pipelines.ipynb └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/hf_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/.github/workflows/hf_sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/app.py -------------------------------------------------------------------------------- /autoquizzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/autoquizzer.png -------------------------------------------------------------------------------- /backend/custom_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/backend/custom_components.py -------------------------------------------------------------------------------- /backend/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/backend/pipelines.py -------------------------------------------------------------------------------- /backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/backend/utils.py -------------------------------------------------------------------------------- /notebooks/auto_quizzer_pipelines.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/autoquizzer/HEAD/notebooks/auto_quizzer_pipelines.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | haystack-ai==2.2.0 2 | json-repair 3 | gradio 4 | --------------------------------------------------------------------------------