| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> |
| 2 |
<div class="row"> |
| 3 |
<div class="col-12"> |
| 4 |
<div class="card mt-4 mb-4"> |
| 5 |
<div class="card-body"> |
| 6 |
<h5 class="card-title"><?php esc_html_e( 'How to get Claude API Key', 'chatbot' ); ?></h5> |
| 7 |
<ol> |
| 8 |
<li><?php esc_html_e( 'Go to Anthropic Console: https://console.anthropic.com/', 'chatbot' ); ?></li> |
| 9 |
<li><?php esc_html_e( 'Sign up or log in to your account.', 'chatbot' ); ?></li> |
| 10 |
<li><?php esc_html_e( 'Navigate to the API Keys section.', 'chatbot' ); ?></li> |
| 11 |
<li><?php esc_html_e( 'Generate a new API Key and copy it.', 'chatbot' ); ?></li> |
| 12 |
<li><?php esc_html_e( 'Paste the API key into the Claude Settings tab.', 'chatbot' ); ?></li> |
| 13 |
</ol> |
| 14 |
</div> |
| 15 |
</div> |
| 16 |
</div> |
| 17 |
</div> |
| 18 |
|