""" Modern Email Templates for LiteLLM Email Service with professional styling """ KEY_CREATED_EMAIL_TEMPLATE = """ Your API Key is Ready
LiteLLM Logo

Hi {recipient_email},

Great news! Your LiteLLM API key is ready to use.

Monthly Budget: {key_budget}

Your API Key
{key_token}

Quick Start Guide

Here's how to use your key with the OpenAI SDK:

import openai

client = openai.OpenAI(
  api_key="{key_token}",
  base_url="{base_url}"
)

response = client.chat.completions.create(
  model="gpt-3.5-turbo", # model to send to the proxy
  messages = [
    {{
      "role": "user",
      "content": "this is a test request, write a short poem"
    }}
  ]
)
View Documentation

Need Help?

If you have any questions or need assistance, please contact us at {email_support_contact}.

{email_footer}
"""