External DocumentationTo learn more, visit the Helix documentation.
Basic Parameters
Advanced Parameters
Example Output
Workflow Library Example
Generate Chat Completion with Helix and Send Results Via EmailPreview this Workflow on desktop
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Messages | The list of messages in the conversation. Each message is an object with a role (system, user, or assistant) and a content string.Example: |
| Model | The model used to generate the chat completion, for example qwen3:8b. |
| Parameter | Description |
|---|---|
| Max Tokens | The maximum number of tokens to generate in the chat completion. |
| Temperature | The sampling temperature to use. Values can range from 0 to 2. |
| Top P | The nucleus sampling parameter, where the model considers the tokens with top_p probability mass. |
{
"id": "ses_01a4t10c132825d3k037tyh7ap",
"object": "chat.completion",
"created": 1723155364,
"model": "qwen3:8b",
"choices": [
{
"index": 0,
"finish_reason": "stop",
"message": {
"role": "assistant",
"content": "The capital of France is Paris."
}
}
],
"usage": {
"prompt_tokens": 24,
"completion_tokens": 8,
"total_tokens": 32
}
}
Was this page helpful?