- using Base44's integration and lack of protection, anyone with an app id and the website can effectively get "free ai"
Install dependencies:
pip install flask requests openaiRun the proxy:
python openai_proxy.pyThe server will start on:
http://127.0.0.1:8080
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)/v1/chat/completions/v1/models/v1/files