Mudanças entre as edições de "Inteligência Artificial"

De BrapciWiki
Ir para navegação Ir para pesquisar
Linha 8: Linha 8:
 
==Linux==
 
==Linux==
 
  curl -fsSL https://ollama.com/install.sh | sh
 
  curl -fsSL https://ollama.com/install.sh | sh
 +
 +
===Consulta CURL===
 +
curl -X POST http://localhost:11434/api/generate -d '{
 +
  "model": "llama3",
 +
  "prompt":"Why is the sky blue?"
 +
}'

Edição das 13h09min de 12 de junho de 2024

Ollama

Download https://www.ollama.com/

Windows

  • ollama run phi3
  • ollama run llama3

Linux

curl -fsSL https://ollama.com/install.sh | sh

Consulta CURL

curl -X POST http://localhost:11434/api/generate -d '{
 "model": "llama3",
 "prompt":"Why is the sky blue?"
}'