Created
August 12, 2024 20:54
-
-
Save kostasx/b2a5bfc0694efe802e7b59cb344bc1bc to your computer and use it in GitHub Desktop.
What is Ollama? (YouTube video: https://www.youtube.com/watch?v=0n3D2nNq7AE)
This file contains 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 characters
function llm(){ | |
question="'$*'" | |
curl http://localhost:11434/api/generate --silent --data '{ | |
"model": "llama3", | |
"prompt": "Answer in as few words as possible. Use a brief style with short replies. q '"$question"' ?", | |
"stream": false | |
}' | python -c "import sys, json; print(json.load(sys.stdin)['response'])" | |
} |
This file contains 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 characters
fetch("http://localhost:11434/api/generate",{ | |
method: "POST", | |
body: JSON.stringify({ | |
model: "llama3", | |
stream: false, | |
prompt: "What is a TPU? Please answer in a sentence." | |
}) | |
}) | |
.then( response => response.json() ) | |
.then( json =>{ | |
console.log(json.response); | |
}); |
This file contains 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 characters
curl -X POST http://localhost:11434/api/generate -d '{ | |
"model": "llama3", | |
"prompt":"Why is a CPU? Please answer in a single sentence.", | |
"stream": false | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment