Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (23 loc) · 521 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 521 Bytes

FreeDuckDuckGo

Docker Compose

FreeDuckDuckGo Service

mkdir FreeDuckDuckGo && cd FreeDuckDuckGo
wget -O compose.yaml https://raw.githubusercontent.com/missuo/FreeDuckDuckGo/main/compose.yaml
docker compose up -d

Test FreeDuckDuckGo

curl http://127.0.0.1:3456/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-3.5-turbo",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ],
    "stream": true
    }'