Keyless GPT Wrapper API

Connect with DuckDuckGo's AI chat and make API requests to LLaMA effortlessly, without cost.

Get Started

Getting Started

Local Setup
Docker Setup
git clone https://github.com/callbacked/keyless-gpt-wrapper-api && cd keyless-gpt-wrapper-api
pip install -r requirements.txt
python server.py

API Commands

Available Models

curl -X GET http://127.0.0.1:1337/v1/models

Lists all available models including GPT4o Mini, Claude 3 Haiku, Mixtral 8x7b, and Llama 70b

Send a Message

curl -X POST "http://localhost:1337/v1/chat/completions" \
-H "Content-Type: application/json" \
-d '{
    "model": "keyless-gpt-4o-mini",
    "messages": [
        {"role": "user", "content": "Tell me a joke"}
    ],
    "stream": false
}'

Send a message to any available model

Continue Conversation

curl -X POST "http://localhost:1337/v1/chat/completions" \
-H "Content-Type: application/json" \
-d '{
    "model": "keyless-gpt-4o-mini",
    "messages": [
    {"role": "user", "content": "Tell me another joke"}
    ],
    "conversation_id": "58a22f8d-64b8-45c1-97c4-030d11e6d1b9",
    "stream": false
}'

Continue a conversation using the conversation_id

Delete Conversation

curl -X DELETE http://127.0.0.1:1337/v1/conversations/1cecdf45-df73-431b-884b-6d233b5511c7

Delete a specific conversation by its ID

Integrate Elsewhere

Use the API wrapper in your favorite AI assistant tools and enhance your productivity (Your mileage may vary).

Using the Wrapper API w/ Aider

Using the Wrapper API w/ Continue.dev

Using the Wrapper API w/ Open Web UI