Skip to main content

What is Feature Name?

Explaining what the feature is and why users should use it.
Feature screenshot
This is a note or important information about the feature that users should know before getting started.

Resources

Steps to use

1

Step 1: Go to the feature page

Go to Feature page and click Create.
Step 1 screenshot
2

Step 2: Configure the feature

Configure your feature settings:
from openai import OpenAI

client = OpenAI(
    base_url="https://api.keywordsai.co/api/",
    api_key="YOUR_API_KEY",
)

response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": "Hello"}],
    extra_body={
        "feature_param": "value"
    }
)
3

Step 3: Use in your code

Copy the configuration and use it in your requests.

Configuration

Parameter 1

Description of what this parameter does and how to use it.
{
  "parameter_name": "value"
}
Description of this parameter.
{
  "another_parameter": {
    "nested": "value"
  }
}

Additional