Settings

Server connection and integration details

Connection
Base URL
Admin key
••••••
Server health

Developer documentation

Share the public docs page with your staff. It walks them through using their PublicaAI key with the OpenAI SDK, LangChain and raw HTTP — including the base URL and available models.

Open docs

CORS reminder

Your Flask server must allow requests from this dashboard's origin. Add the following to app.py:

# pip install flask-cors
from flask_cors import CORS
CORS(app, resources={r"/*": {"origins": "*"}},
     allow_headers=["Content-Type", "Authorization", "X-Admin-Key"])