Ollama Llama Pack Example
Setup Data
Section titled “Setup Data”!wget "https://www.dropbox.com/s/f6bmb19xdg0xedm/paul_graham_essay.txt?dl=1" -O paul_graham_essay.txt
--2023-12-06 10:57:29-- https://www.dropbox.com/s/f6bmb19xdg0xedm/paul_graham_essay.txt?dl=1Resolving www.dropbox.com (www.dropbox.com)... 2620:100:6057:18::a27d:d12, 162.125.13.18Connecting to www.dropbox.com (www.dropbox.com)|2620:100:6057:18::a27d:d12|:443... connected.HTTP request sent, awaiting response... 302 FoundLocation: /s/dl/f6bmb19xdg0xedm/paul_graham_essay.txt [following]--2023-12-06 10:57:29-- https://www.dropbox.com/s/dl/f6bmb19xdg0xedm/paul_graham_essay.txtReusing existing connection to [www.dropbox.com]:443.HTTP request sent, awaiting response... 302 FoundLocation: https://uc2fc064df073edb14568cb68878.dl.dropboxusercontent.com/cd/0/get/CI6sL69BcU1vwbM-TAz-tGmRw4WlbgfQuJZeNXywf2hq34Y0hCCL--A7gVBWo6T3igijCNDkLGnPwDiugV9pIEtnFODeIcET5PwUgToHl2-1P77MqJy2okrGt6CmC5bxwI5OPEV4MGsUNvSHP34FLMWZ/file?dl=1# [following]--2023-12-06 10:57:30-- https://uc2fc064df073edb14568cb68878.dl.dropboxusercontent.com/cd/0/get/CI6sL69BcU1vwbM-TAz-tGmRw4WlbgfQuJZeNXywf2hq34Y0hCCL--A7gVBWo6T3igijCNDkLGnPwDiugV9pIEtnFODeIcET5PwUgToHl2-1P77MqJy2okrGt6CmC5bxwI5OPEV4MGsUNvSHP34FLMWZ/file?dl=1Resolving uc2fc064df073edb14568cb68878.dl.dropboxusercontent.com (uc2fc064df073edb14568cb68878.dl.dropboxusercontent.com)... 2620:100:6057:15::a27d:d0f, 162.125.13.15Connecting to uc2fc064df073edb14568cb68878.dl.dropboxusercontent.com (uc2fc064df073edb14568cb68878.dl.dropboxusercontent.com)|2620:100:6057:15::a27d:d0f|:443... connected.HTTP request sent, awaiting response... 200 OKLength: 75047 (73K) [application/binary]Saving to: ‘paul_graham_essay.txt’
paul_graham_essay.t 100%[===================>] 73.29K --.-KB/s in 0.02s
2023-12-06 10:57:30 (4.02 MB/s) - ‘paul_graham_essay.txt’ saved [75047/75047]
from llama_index.core import SimpleDirectoryReader
# load in some sample datareader = SimpleDirectoryReader(input_files=["paul_graham_essay.txt"])documents = reader.load_data()
Start Ollama
Section titled “Start Ollama”Make sure you run ollama run llama2
in a terminal.
# !ollama run llama2
Download and Initialize Pack
Section titled “Download and Initialize Pack”We use download_llama_pack
to download the pack class, and then we initialize it with documents.
Every pack will have different initialization parameters. You can find more about the initialization parameters for each pack through its README (also on LlamaHub).
NOTE: You must also specify an output directory. In this case the pack is downloaded to voyage_pack
. This allows you to customize and make changes to the file, and import it later!
from llama_index.core.llama_pack import download_llama_pack
# download and install dependenciesOllamaQueryEnginePack = download_llama_pack( "OllamaQueryEnginePack", "./ollama_pack")
# You can use any llama-hub loader to get documents!ollama_pack = OllamaQueryEnginePack(model="llama2", documents=documents)
response = ollama_pack.run("What did the author do growing up?")
print(str(response))
Based on the information provided in the context, the author did not mention anything about what he did growing up. The text only covers his experiences as an adult, including his work at Viaweb, Y Combinator, and his interest in painting. There is no information given about the author's childhood or formative years.