yarenty commited on
Commit
b9a57ee
·
verified ·
1 Parent(s): c008167

change ollama run

Browse files
Files changed (1) hide show
  1. README.md +5 -18
README.md CHANGED
@@ -39,24 +39,11 @@ These files are compatible with tools like `llama.cpp` and `Ollama`.
39
 
40
  ### With Ollama
41
 
42
- 1. Create the `Modelfile`:
43
- ```
44
- FROM ./llama32_datafusion.gguf
45
- TEMPLATE """### Instruction:
46
- {{ .Prompt }}
47
-
48
- ### Response:
49
- """
50
- PARAMETER stop "### Instruction:"
51
- PARAMETER stop "### Response:"
52
- PARAMETER stop "### End"
53
- ```
54
-
55
- 2. Create and run the Ollama model:
56
- ```bash
57
- ollama create llama32-datafusion-instruct-gguf -f Modelfile
58
- ollama run llama32-datafusion-instruct-gguf "How do I use the Ballista scheduler?"
59
- ```
60
 
61
  ### With llama.cpp
62
 
 
39
 
40
  ### With Ollama
41
 
42
+ ```bash
43
+ ollama pull jaro/llama32-datafusion-instruct
44
+ ollama run jaro/llama32-datafusion-instruct "How do I use the Ballista scheduler?"
45
+ ```
46
+
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
  ### With llama.cpp
49