Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt

Use this file to discover all available pages before exploring further.

Generate a chat completion response.

Basic Parameters

ParameterDescription
Anthropic FormatSelect to use an Anthropic model.

Note: This parameter is only available for Anthropic models like Claude Sonnet or Claude Opus. It won’t work for other models such as GPT-4o or DeepSeek.
Max TokensThe maximum number of tokens to generate in the completion.
MessagesThe conversation messages to generate a completion for.

For example:
[
{“role”: “user”, “content”: “What is the capital of France?”},
{“role”: “assistant”, “content”: “The capital of France is Paris.”},
{“role”: “user”, “content”: “What is so great about it?”}
]
ModelThe deployment name of the model to use.

Note: To use an Anthropic model, you must also use the Anthropic Format parameter.
Project NameThe name of the Azure AI Foundry project.

Advanced Parameters

ParameterDescription
Additional ParametersA JSON object for additional body parameters. Values specified in this parameter will override equivalent parameters.

For example:
{
“first_key”: 12345,
“second_key”: “some_value”
}
The object must follow the vendor’s structure as defined in the API documentation.

Example Output

{
	"choices": [
		{
			"content_filter_results": {
				"hate": {
					"filtered": false,
					"severity": "safe"
				},
				"protected_material_code": {
					"detected": false,
					"filtered": false
				},
				"protected_material_text": {
					"detected": false,
					"filtered": false
				},
				"self_harm": {
					"filtered": false,
					"severity": "safe"
				},
				"sexual": {
					"filtered": false,
					"severity": "safe"
				},
				"violence": {
					"filtered": false,
					"severity": "safe"
				}
			},
			"finish_reason": "stop",
			"index": 0,
			"logprobs": null,
			"message": {
				"annotations": [],
				"content": "The Eiffel Tower is great for a few reasons—beyond just being famous:\n\n- **Views you can't get anywhere else:** From the top (or even the mid-level platforms), you get a sweeping panorama of Paris.\n- **A true \"Paris icon\" moment:** It's one of the most recognizable structures in the world.\n- **Architecture + engineering:** When it was built it was considered a major engineering achievement.\n- **It changes with the light:** The tower looks different at each time of day. At night it's often lit up in a way that makes it feel magical.",
				"refusal": null,
				"role": "assistant"
			}
		}
	],
	"created": 1779624259,
	"id": "chatcmpl-Dj1r1Fbkh12OyeQWi0x6PdRwOCsrM",
	"model": "gpt-5.4-nano-2026-03-17",
	"object": "chat.completion",
	"prompt_filter_results": [
		{
			"prompt_index": 0,
			"content_filter_results": {
				"hate": {
					"filtered": false,
					"severity": "safe"
				},
				"jailbreak": {
					"detected": false,
					"filtered": false
				},
				"self_harm": {
					"filtered": false,
					"severity": "safe"
				},
				"sexual": {
					"filtered": false,
					"severity": "safe"
				},
				"violence": {
					"filtered": false,
					"severity": "safe"
				}
			}
		}
	],
	"service_tier": "default",
	"system_fingerprint": null,
	"usage": {
		"completion_tokens": 260,
		"prompt_tokens": 203,
		"total_tokens": 463
	}
}

Workflow Library Example

Chat Completion with Azure Foundry and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop