Settings
Manage your account and API keys
Account Information
Your Proxy API Key
Use this key to authenticate your requests to the ModelSight Platform
Keep this key secure. Treat it like a password and do not commit it to version control.
Integration Example
python
<span className="text-fuchsia-400">from</span> openai <span className="text-fuchsia-400">import</span> OpenAI
client = OpenAI(
base_url=<span className="text-emerald-400">"http://localhost:8000/v1"</span>,
api_key=<span className="text-emerald-400">"YOUR_API_KEY"</span>
)
response = client.chat.completions.create(
model=<span className="text-emerald-400">"gpt-4o-mini"</span>,
messages=[
{<span className="text-blue-400">"role"</span>: <span className="text-emerald-400">"user"</span>, <span className="text-blue-400">"content"</span>: <span className="text-emerald-400">"Hello!"</span>}
]
)Quick Links
Danger Zone
Log out of your account on this device.