我现在使用本地ComfyUI作为生图工具,在添加高斯模糊的工作流的例子时出错,提示
}: RunningHub API key is not configured. Please set RUNNINGHUB_API_KEY in your environment.
我的配置文件如下:
# Pixelle MCP Project Environment Variables Configuration
# Copy this file to .env and modify the configuration values according to your actual situation
# ======== Basic Service Configuration ========
# Service configuration
HOST=0.0.0.0
PORT=9004
# Optional, used to specify public access URL, generally not needed for local services,
# configure when service is not on local machine
PUBLIC_READ_URL=""
# ======== ComfyUI Integration Configuration ========
# ComfyUI service address
COMFYUI_BASE_URL=http://***********:8188
# ComfyUI API Key (required if API Nodes are used in workflows,
# get it from: https://platform.comfy.org/profile/api-keys)
COMFYUI_API_KEY="***********"
# Cookies used when calling ComfyUI interface, configure if ComfyUI service requires authentication
COMFYUI_COOKIES=""
# Executor type for calling ComfyUI interface, supports websocket and http (both are generally supported)
COMFYUI_EXECUTOR_TYPE=http
# ======== RunningHub Cloud Configuration ========
# RunningHub cloud execution engine configuration
# API base URL for RunningHub service
# Global: https://www.runninghub.ai (for international users)
# China: https://www.runninghub.cn (recommended for Chinese users)
RUNNINGHUB_BASE_URL="https://www.runninghub.ai"
# RunningHub API Key
# Global users get key from: https://www.runninghub.ai
# China users get key from: https://www.runninghub.cn
RUNNINGHUB_API_KEY=""
# ======== Chainlit Framework Configuration ========
# Chainlit auth secret (used for chainlit auth, can be reused or randomly generated)
CHAINLIT_AUTH_SECRET="changeme-generate-a-secure-secret-key"
CHAINLIT_AUTH_ENABLED=true
CHAINLIT_SAVE_STARTER_ENABLED=false
# ======== CDN Configuration ========
# CDN strategy for loading external resources (KaTeX, Google Fonts, etc.)
# Options:
# - "auto": Automatically detect user language (Chinese users get China CDN, others get global CDN)
# - "china": Force all users to use China CDN mirrors (faster for Chinese users)
# - "global": Force all users to use original global CDNs (faster for international users)
# Default: "auto"
CDN_STRATEGY=auto
# ======== LLM Model Configuration ========
# OpenAI configuration
OPENAI_BASE_URL="***********"
# Get your API key at: https://platform.openai.com/api-keys
OPENAI_API_KEY="***********"
# List OpenAI models to be used, if multiple, separate with English commas
CHAINLIT_CHAT_OPENAI_MODELS="***********"
# Optional, default model for conversations (can be from any provider above)
CHAINLIT_CHAT_DEFAULT_MODEL=""
我现在使用本地ComfyUI作为生图工具,在添加高斯模糊的工作流的例子时出错,提示
我的配置文件如下: