├── .gitignore ├── Dockerfile ├── README.md ├── cheatsheet.txt ├── deployments ├── linuxbot.yaml ├── ollama-gpu.yaml └── ollama.yaml ├── linuxbot.gif ├── localllamas.png ├── notebooks ├── 00_setup.ipynb ├── 01_simple_ollama_example.ipynb ├── 02_simple_text_summary.ipynb ├── 03_simple_naturalsql_example.ipynb ├── requirements.txt └── tankerkoenig_darmstadt.csv ├── streamlit ├── app.py ├── docs │ ├── .gitkeep │ ├── Linux-FAQ.pdf │ └── biography.html └── requirements.txt └── workshop ├── Darmstadt_v1.md ├── basic_rag.png └── rag101_for_enterprise.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/README.md -------------------------------------------------------------------------------- /cheatsheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/cheatsheet.txt -------------------------------------------------------------------------------- /deployments/linuxbot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/deployments/linuxbot.yaml -------------------------------------------------------------------------------- /deployments/ollama-gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/deployments/ollama-gpu.yaml -------------------------------------------------------------------------------- /deployments/ollama.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/deployments/ollama.yaml -------------------------------------------------------------------------------- /linuxbot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/linuxbot.gif -------------------------------------------------------------------------------- /localllamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/localllamas.png -------------------------------------------------------------------------------- /notebooks/00_setup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/notebooks/00_setup.ipynb -------------------------------------------------------------------------------- /notebooks/01_simple_ollama_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/notebooks/01_simple_ollama_example.ipynb -------------------------------------------------------------------------------- /notebooks/02_simple_text_summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/notebooks/02_simple_text_summary.ipynb -------------------------------------------------------------------------------- /notebooks/03_simple_naturalsql_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/notebooks/03_simple_naturalsql_example.ipynb -------------------------------------------------------------------------------- /notebooks/requirements.txt: -------------------------------------------------------------------------------- 1 | llama-index==0.9.2 2 | -------------------------------------------------------------------------------- /notebooks/tankerkoenig_darmstadt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/notebooks/tankerkoenig_darmstadt.csv -------------------------------------------------------------------------------- /streamlit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/streamlit/app.py -------------------------------------------------------------------------------- /streamlit/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /streamlit/docs/Linux-FAQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/streamlit/docs/Linux-FAQ.pdf -------------------------------------------------------------------------------- /streamlit/docs/biography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/streamlit/docs/biography.html -------------------------------------------------------------------------------- /streamlit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/streamlit/requirements.txt -------------------------------------------------------------------------------- /workshop/Darmstadt_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/workshop/Darmstadt_v1.md -------------------------------------------------------------------------------- /workshop/basic_rag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/workshop/basic_rag.png -------------------------------------------------------------------------------- /workshop/rag101_for_enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroecker/LLM_AppDev-HandsOn/HEAD/workshop/rag101_for_enterprise.png --------------------------------------------------------------------------------