Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 407 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 407 Bytes

lagoon-llama2

lagoon going llama2

local run on mac M1

docker-compose up -d

curl test openai api

curl http://localhost:8000/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
     "model": "gpt-3.5-turbo",
     "messages": [{"role": "user", "content": "What do you think about when nobody is watching?"}],
     "temperature": 0.7,
     "max_tokens": 2000
   }'