Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

base44-free-ai

  • using Base44's integration and lack of protection, anyone with an app id and the website can effectively get "free ai"

Setup

Install dependencies:

pip install flask requests openai

Run the proxy:

python openai_proxy.py

The server will start on:

http://127.0.0.1:8080

Example Usage

Example using the official OpenAI Python SDK:

from openai import OpenAI

client = OpenAI(
    api_key="aaddpp",
    base_url="http://127.0.0.1:8080/v1"
)

r = client.chat.completions.create(
    model="claude_opus_4_7",
    messages=[
        {
            "role": "user",
            "content": "write me a hello world py app"
        }
    ]
)

print(r.choices[0].message.content)

Supported Endpoints

  • /v1/chat/completions
  • /v1/models
  • /v1/files

About

Using Base44 apps to get "free" claude / gemini / gpt

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages