Multi-Model Prompt Processor
![]()
Description
Choose between OpenAI, Anthropic or Ollama / Llama models and keep a stateless, windowed or full conversation when streaming events through StreamPipes.
Configuration
Configuration overview
| Setting | Purpose |
|---|---|
| Model Provider | "OpenAI", "Anthropic" or "Ollama" |
| Model Name | Any model string supported by the chosen provider (lists below) |
| Temperature | 0–1 randomness control (higher->more creative, lower-> more deterministic) |
| System Prompt | Sets the assistant’s role / rules |
| Input Field | Event field treated as the user message |
| History Mode | "Stateless", "Windowed", or "Full" |
| Window Size | N recent turns to keep when Windowed |
| OpenAI API Key | Api Key for OpenAI |
| Anthropic API Key | Api Key for Anthropic |
| Ollama Base URL | Base URL of hosted Ollama instance |
| Output Field | Name of the new field carrying the LLM reply |
Ready‑to‑use model names
Anthropic
claude-3-7-sonnet-20250219claude-3-5-sonnet-20241022claude-3-5-haiku-20241022claude-3-5-sonnet-20240620claude-3-opus-20240229claude-3-sonnet-20240229claude-3-haiku-20240307claude-2.1claude-2.0
OpenAI
gpt-3.5-turbogpt-3.5-turbo-1106gpt-3.5-turbo-0125gpt-3.5-turbo-16kgpt-4gpt-4-0613gpt-4-turbo-previewgpt-4-1106-previewgpt-4-0125-previewgpt-4-turbogpt-4-turbo-2024-04-09gpt-4-32kgpt-4-32k-0613gpt-4ogpt-4o-2024-05-13gpt-4o-2024-08-06gpt-4o-2024-11-20gpt-4o-minigpt-4o-mini-2024-07-18o1o1-2024-12-17o1-minio1-mini-2024-09-12o1-previewo1-preview-2024-09-12o3-minio3-mini-2025-01-31
Llama suggestions (Ollama)
llama3llama3:8bllama2mistral‑7b‑instruct
(Add any custom model present in your Ollama instance.)
Output
Each event is forwarded with an extra field (llmResponse by default) containing the model’s answer.
Conversation state is kept in‑memory and reset when the pipeline stops/restarts.