Troubleshooting
Common Error Messages
Section titled “Common Error Messages”| Error | Node | Meaning | Solution |
|---|---|---|---|
| ”No API key provided” | Upload | API key not found | Set ISEKAI_API_KEY environment variable or enter key in node |
| ”Invalid API key format” | Upload | API key doesn’t match expected format | Check that key starts with isk_ and has 64 hex characters |
| ”Authentication failed” | Upload | API key is invalid or revoked | Generate a new API key in your Isekai Core instance |
| ”Storage limit exceeded” | Upload | Reached storage quota | Check storage settings in your instance or delete old deviations |
| ”Rate limit exceeded” | Upload | Too many uploads in short time | Wait 15 minutes (limit: 100 uploads per 15 minutes) |
| “Failed to connect” | Upload | Network or API connection issue | Check internet connection and API URL configuration |
| ”Upload timed out” | Upload | Request took > 60 seconds | Check network connection and try again |
| ”Connection Failed” | Ollama | Cannot reach Ollama server | Start Ollama (ollama serve) and verify URL |
| ”Untitled” | Ollama | Empty input provided | Connect a non-empty text input to the node |
Installation Issues
Section titled “Installation Issues”Node doesn’t appear in ComfyUI
Section titled “Node doesn’t appear in ComfyUI”- If installed via Manager, try reinstalling from Manager → Install Custom Nodes
- Check that the folder is in
ComfyUI/custom_nodes/isekai-comfy-node/ - Verify structure matches the modular format
- Install dependencies:
pip install -r requirements.txt - Restart ComfyUI completely
- Check the ComfyUI console for error messages
”ModuleNotFoundError: No module named ‘PIL’”
Section titled “”ModuleNotFoundError: No module named ‘PIL’””Install dependencies:
pip install -r requirements.txtAPI Key Issues
Section titled “API Key Issues””No API key provided” Error
Section titled “”No API key provided” Error”-
Check if environment variable is set:
Terminal window # macOS/Linuxecho $ISEKAI_API_KEY# Windows (PowerShell)echo $env:ISEKAI_API_KEY# Windows (Command Prompt)echo %ISEKAI_API_KEY% -
If empty, set the environment variable:
- Follow instructions in Installation & Setup
- Restart ComfyUI after setting the variable
-
Verify the key format:
- Must start with
isk_ - Must have 64 hexadecimal characters after the prefix
- Example:
isk_0123456789abcdef...(total 68 characters)
- Must start with
-
Check console output:
- Look for:
[Isekai] Using API key from ISEKAI_API_KEY environment variable - Or:
[Isekai] Using API key from node input
- Look for:
-
Fallback to node input:
- If environment variable doesn’t work, enter key directly in the node
- Make sure the
api_keyfield is not empty
Upload Issues
Section titled “Upload Issues””Failed to connect to Isekai API”
Section titled “”Failed to connect to Isekai API””- Verify
ISEKAI_API_URLis set correctly and points to your Isekai Core instance - Check your internet connection (if using remote instance)
- Ensure your Isekai Core instance is running and accessible
- Check if your firewall is blocking the connection
- Verify the URL format:
https://api.your-domain.comfor deployed instances orhttp://localhost:4000for local
Upload succeeds but image doesn’t appear
Section titled “Upload succeeds but image doesn’t appear”- Log in to your Isekai Core instance
- Navigate to the “Review” section
- Your upload should appear with status “review”
- Approve the upload to make it visible in Drafts
Ollama Issues
Section titled “Ollama Issues”Ollama Summarizer not working
Section titled “Ollama Summarizer not working”- Verify Ollama is installed:
ollama --version - Start Ollama server:
ollama serve - Check server is running:
curl http://localhost:11434/api/tags - Ensure model is pulled:
ollama pull llama3 - Check URL in node matches Ollama server (default: http://localhost:11434)
String Node Issues
Section titled “String Node Issues”Dynamic String returns empty
Section titled “Dynamic String returns empty”- Check that text_list contains non-empty lines
- Verify seed value is valid (0 to 2^64-1)
- Ensure input is multiline (use Shift+Enter in text field)
Tag Selector returns default value
Section titled “Tag Selector returns default value”- Verify trigger word matches a key in presets (case-insensitive)
- Check preset format using TOML/INI style sections:
[TriggerWord]tags, separated, by, commas
- Ensure sections use square brackets
[Section]
Round Robin state issues
Section titled “Round Robin state issues”- State is stored in
ComfyUI/temp/isekai/round_robin/{batch_id}.log - State automatically clears when ComfyUI restarts
- If you change
images_per_itemmid-batch, the counter resets automatically - To start over: Restart ComfyUI or use a new batch_id
Load Text file not found
Section titled “Load Text file not found”- Check that files are in
ComfyUI/models/text_files/for dropdown - Verify absolute path is correct for custom_path
- Supports UTF-8 encoding with automatic fallback
- Shows “(no files found - use custom path)” if text_files directory is empty
Getting Help
Section titled “Getting Help”- Issues & Bugs: GitHub Issues
- Documentation: Browse the node-specific pages on this site
- Deployment Help: See the Deployment Guides if you need help setting up your Isekai Core instance