├── .gitignore ├── .streamlit ├── config-BLACK.toml ├── config-DARK.toml ├── config.toml └── secrets.toml.sample ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── app.py ├── app_about.py ├── app_llm_data_query.py ├── app_llm_docs_query.py ├── app_llm_knowlege_graph_gen.py ├── app_state.py ├── common.py ├── data ├── CustomMacroModel_L_A.csv └── GCFS Countries.xlsx ├── db └── empty-for-github.txt ├── docs └── cdaniel-future-is-predictable-master.pdf ├── func_prompt.py ├── globals.py ├── graph_frontend ├── __init__.py └── index.html ├── images ├── a12i_logo_circle_transparent.png ├── app-demo.gif ├── favicon.ico └── snapshot-01.png ├── requirements.txt ├── run_app.cmd ├── static ├── favicon.ico ├── knowledge_graph ├── knowledge_graph.gv ├── knowledge_graph.gv.pdf └── knowledge_graph.png ├── storage └── empty-for-github.txt └── streamlit_debug.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config-BLACK.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/.streamlit/config-BLACK.toml -------------------------------------------------------------------------------- /.streamlit/config-DARK.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/.streamlit/config-DARK.toml -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /.streamlit/secrets.toml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/.streamlit/secrets.toml.sample -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/app.py -------------------------------------------------------------------------------- /app_about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/app_about.py -------------------------------------------------------------------------------- /app_llm_data_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/app_llm_data_query.py -------------------------------------------------------------------------------- /app_llm_docs_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/app_llm_docs_query.py -------------------------------------------------------------------------------- /app_llm_knowlege_graph_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/app_llm_knowlege_graph_gen.py -------------------------------------------------------------------------------- /app_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/app_state.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/common.py -------------------------------------------------------------------------------- /data/CustomMacroModel_L_A.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/data/CustomMacroModel_L_A.csv -------------------------------------------------------------------------------- /data/GCFS Countries.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/data/GCFS Countries.xlsx -------------------------------------------------------------------------------- /db/empty-for-github.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/cdaniel-future-is-predictable-master.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/docs/cdaniel-future-is-predictable-master.pdf -------------------------------------------------------------------------------- /func_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/func_prompt.py -------------------------------------------------------------------------------- /globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/globals.py -------------------------------------------------------------------------------- /graph_frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/graph_frontend/__init__.py -------------------------------------------------------------------------------- /graph_frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/graph_frontend/index.html -------------------------------------------------------------------------------- /images/a12i_logo_circle_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/images/a12i_logo_circle_transparent.png -------------------------------------------------------------------------------- /images/app-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/images/app-demo.gif -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/snapshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/images/snapshot-01.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_app.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/run_app.cmd -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/knowledge_graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/static/knowledge_graph -------------------------------------------------------------------------------- /static/knowledge_graph.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/static/knowledge_graph.gv -------------------------------------------------------------------------------- /static/knowledge_graph.gv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/static/knowledge_graph.gv.pdf -------------------------------------------------------------------------------- /static/knowledge_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/static/knowledge_graph.png -------------------------------------------------------------------------------- /storage/empty-for-github.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /streamlit_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asehmi/docs-n-data-knowledge-app/HEAD/streamlit_debug.py --------------------------------------------------------------------------------