| Parameter | Value | Notes |
|---|---|---|
| API Key | sk-xxxxxxxxxxxxxxxx | Enter the raw plaintext key — do not add a Bearer prefix. |
| Base URL | https://platform.dataeyes.ai | Do NOT include /v1. |
| Model Name | A model name supported by DataEyesAI | Must be a model that genuinely exists on the platform and your account has permission to call. |
grok --help in the terminal. If a usage guide is printed, the installation was successful and you can proceed to the next step.--base-url value must not end with /v1.-p 3001: Specifies the port to run on (avoids conflicts with the default port 3000).-k: Your API Key. (Only needs to be entered once — subsequent launches can omit this flag after it is saved.)--base-url: The DataEyesAI API root URL (recommended: https://platform.dataeyes.ai).grok to Launch)notepad $PROFILEfunction grok-short {
grok -p 3001 --base-url "https://platform.dataeyes.ai" --reasoning-model "your-model-name" --completion-model "your-model-name"
}
Set-Alias grok grok-shortgrok to launch.$content = @'
function grok-short {
# Use grok.cmd to avoid infinite loops; use -p 3001 to avoid port conflicts
grok.cmd -p 3001 --base-url "https://platform.dataeyes.ai" --reasoning-model "deepseek-v3.2-251201" --completion-model "deepseek-v3.2-251201"
}
# Use -Force to overwrite without extra conditional logic
Set-Alias grok grok-short -Force
'@
Set-Content -Path $PROFILE -Value $content
. $PROFILE"model" "" can be replaced with any of the many models supported by your console.--base-url. Make sure the URL does not end with /v1.https://platform.dataeyes.ai/v1https://platform.dataeyes.ai-p 3001 in the command to -p 3002 or any other available four-digit port number.