Add an Ollama baseUrl in chatflow configuration for Follow-up prompts (#4169)

Add abn Ollama baseUrl in chatflow configuration for Follow-up prompts
This commit is contained in:
Sarge Joseph
2025-03-13 15:59:27 -04:00
committed by GitHub
parent c2b830f279
commit 2b9a1ae316
3 changed files with 15 additions and 2 deletions
@@ -269,6 +269,14 @@ const followUpPromptsOptions = {
name: FollowUpPromptProviders.OLLAMA,
icon: ollamaIcon,
inputs: [
{
label: 'Base URL',
name: 'baseUrl',
type: 'string',
placeholder: 'http://127.0.0.1:11434',
description: 'Base URL of your Ollama instance',
default: 'http://127.0.0.1:11434'
},
{
label: 'Model Name',
name: 'modelName',