Skip to content

Instantly share code, notes, and snippets.

@kostasx
Created August 12, 2024 20:54
Show Gist options
  • Save kostasx/b2a5bfc0694efe802e7b59cb344bc1bc to your computer and use it in GitHub Desktop.
Save kostasx/b2a5bfc0694efe802e7b59cb344bc1bc to your computer and use it in GitHub Desktop.
What is Ollama? (YouTube video: https://www.youtube.com/watch?v=0n3D2nNq7AE)
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'])"
}
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);
});
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