├── .devcontainer └── devcontainer.json ├── .gitignore ├── .streamlit └── config.toml ├── LICENSE ├── README.md ├── __pycache__ ├── mermaid.cpython-311.pyc ├── pdf.cpython-311.pyc ├── ti_5whats.cpython-311.pyc ├── ti_ai.cpython-311.pyc ├── ti_mermaid.cpython-311.pyc ├── ti_mermaid_live.cpython-311.pyc ├── ti_navigator.cpython-311.pyc ├── ti_pdf.cpython-311.pyc ├── ti_scrape.cpython-311.pyc └── ti_stix.cpython-311.pyc ├── brain.png ├── cre ├── docs & media ├── Videos │ └── TI Mindmap GPT Demo.webm ├── images │ └── logoTIMINDMAPGPT-small.png └── presentations │ └── BSides Athens 2024 - From Data Deluge to actionable Insights with LLMs Introducing TI Mindmap.pdf ├── editor.py ├── empty.png ├── logoTIMINDMAPGPT.png ├── requirements.txt ├── static ├── 08d9d812-22e2-4d3d-b95b-0c31e6b59bb0.json ├── 0d1cfd0a-c69d-4f93-847c-6f8a135be6ea.json ├── 1fc943b8-a0c1-420d-b43d-a07de3f64906.json ├── 78a1666c-dbc5-4e3e-ac2b-9f6a0bab7ce9.json └── e1ac84e8-ecd7-4d87-8982-1eb4f89e036a.json ├── ti_5whats.py ├── ti_ai.py ├── ti_markmaptest.py ├── ti_mermaid.py ├── ti_mermaid_live.py ├── ti_navigator.py ├── ti_pdf.py ├── ti_stix.py └── timindmapgpt.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .streamlit -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/mermaid.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/mermaid.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/pdf.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/pdf.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/ti_5whats.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/ti_5whats.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/ti_ai.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/ti_ai.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/ti_mermaid.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/ti_mermaid.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/ti_mermaid_live.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/ti_mermaid_live.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/ti_navigator.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/ti_navigator.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/ti_pdf.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/ti_pdf.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/ti_scrape.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/ti_scrape.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/ti_stix.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/__pycache__/ti_stix.cpython-311.pyc -------------------------------------------------------------------------------- /brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/brain.png -------------------------------------------------------------------------------- /cre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/cre -------------------------------------------------------------------------------- /docs & media/Videos/TI Mindmap GPT Demo.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/docs & media/Videos/TI Mindmap GPT Demo.webm -------------------------------------------------------------------------------- /docs & media/images/logoTIMINDMAPGPT-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/docs & media/images/logoTIMINDMAPGPT-small.png -------------------------------------------------------------------------------- /docs & media/presentations/BSides Athens 2024 - From Data Deluge to actionable Insights with LLMs Introducing TI Mindmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/docs & media/presentations/BSides Athens 2024 - From Data Deluge to actionable Insights with LLMs Introducing TI Mindmap.pdf -------------------------------------------------------------------------------- /editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/editor.py -------------------------------------------------------------------------------- /empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/empty.png -------------------------------------------------------------------------------- /logoTIMINDMAPGPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/logoTIMINDMAPGPT.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/08d9d812-22e2-4d3d-b95b-0c31e6b59bb0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/static/08d9d812-22e2-4d3d-b95b-0c31e6b59bb0.json -------------------------------------------------------------------------------- /static/0d1cfd0a-c69d-4f93-847c-6f8a135be6ea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/static/0d1cfd0a-c69d-4f93-847c-6f8a135be6ea.json -------------------------------------------------------------------------------- /static/1fc943b8-a0c1-420d-b43d-a07de3f64906.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/static/1fc943b8-a0c1-420d-b43d-a07de3f64906.json -------------------------------------------------------------------------------- /static/78a1666c-dbc5-4e3e-ac2b-9f6a0bab7ce9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/static/78a1666c-dbc5-4e3e-ac2b-9f6a0bab7ce9.json -------------------------------------------------------------------------------- /static/e1ac84e8-ecd7-4d87-8982-1eb4f89e036a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/static/e1ac84e8-ecd7-4d87-8982-1eb4f89e036a.json -------------------------------------------------------------------------------- /ti_5whats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/ti_5whats.py -------------------------------------------------------------------------------- /ti_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/ti_ai.py -------------------------------------------------------------------------------- /ti_markmaptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/ti_markmaptest.py -------------------------------------------------------------------------------- /ti_mermaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/ti_mermaid.py -------------------------------------------------------------------------------- /ti_mermaid_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/ti_mermaid_live.py -------------------------------------------------------------------------------- /ti_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/ti_navigator.py -------------------------------------------------------------------------------- /ti_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/ti_pdf.py -------------------------------------------------------------------------------- /ti_stix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/ti_stix.py -------------------------------------------------------------------------------- /timindmapgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/format81/TI-Mindmap-GPT/HEAD/timindmapgpt.py --------------------------------------------------------------------------------