Last active
June 27, 2024 14:11
-
-
Save mertbozkir/b10981689807e5991d243fca47fd6686 to your computer and use it in GitHub Desktop.
Revisions
-
mertbozkir revised this gist
Jun 27, 2024 . 1 changed file with 6 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,15 @@ Push a new model: ``` ollama pull llama2 echo "FROM llama2" >> Modelfile echo "SYSTEM You are a friendly assistant." >> Modelfile ollama create -f Modelfile mertbozkir/test ollama push mertbozkir/test ``` or push an existing model: ``` ollama cp llama2 mertbozkir/test ollama push mertbozkir/test ``` -
mertbozkir created this gist
Jun 27, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ Push a new model: ```ollama pull llama2 echo "FROM llama2" >> Modelfile echo "SYSTEM You are a friendly assistant." >> Modelfile ollama create -f Modelfile mertbozkir/test ollama push mertbozkir/test ``` or push an existing model: ```ollama cp llama2 mertbozkir/test ollama push mertbozkir/test```