├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── pipeline ├── __init__.py ├── extract.py └── validate.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohuizhang/LLMKE/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohuizhang/LLMKE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohuizhang/LLMKE/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohuizhang/LLMKE/HEAD/app.py -------------------------------------------------------------------------------- /pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohuizhang/LLMKE/HEAD/pipeline/extract.py -------------------------------------------------------------------------------- /pipeline/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohuizhang/LLMKE/HEAD/pipeline/validate.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gradio 2 | openai 3 | ollama 4 | rdflib 5 | sparqlwrapper --------------------------------------------------------------------------------