├── .github ├── FUNDING.yml └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── chat-with-pdf ├── README.md ├── llama-parse.png ├── requirements.txt └── streamlit_app.py └── summarize-url ├── .python-version ├── README.md ├── requirements.txt ├── streamlit_app.py └── summarize-url.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/README.md -------------------------------------------------------------------------------- /chat-with-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/chat-with-pdf/README.md -------------------------------------------------------------------------------- /chat-with-pdf/llama-parse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/chat-with-pdf/llama-parse.png -------------------------------------------------------------------------------- /chat-with-pdf/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/chat-with-pdf/requirements.txt -------------------------------------------------------------------------------- /chat-with-pdf/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/chat-with-pdf/streamlit_app.py -------------------------------------------------------------------------------- /summarize-url/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /summarize-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/summarize-url/README.md -------------------------------------------------------------------------------- /summarize-url/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/summarize-url/requirements.txt -------------------------------------------------------------------------------- /summarize-url/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/summarize-url/streamlit_app.py -------------------------------------------------------------------------------- /summarize-url/summarize-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphasecio/llama-index/HEAD/summarize-url/summarize-url.png --------------------------------------------------------------------------------