@fengcch/n8n-nodes-302ai-chat
v1.2.2
Published
n8n community node for interacting with the 302.ai chat completion API
Maintainers
Readme
@fengcch/n8n-nodes-302ai-chat
This is an n8n community node for 302.AI AI service integration.
Prerequisites
You need to have a valid API key from 302.AI to use this node.
Installation
- Go to Settings > Community Nodes in your n8n instance.
- Select Install and enter
@fengcch/n8n-nodes-302ai-chatin the search box. - Click Install to add the node to your n8n instance.
Configuration
- In your n8n workflow, add the "302.AI" node.
- In the "Credentials" section, click on Create New.
- Give your credential a name.
- Enter your API key from
302.AIinto the API Key field. - Click Save to create the credential.
Usage
Chat Operation
- Model Name or ID: Select from available 302.ai models
- System Prompt: (Optional) Provide context for the AI
- Message: Your input message
- Additional Fields: Temperature, max tokens, etc.
Multimodal Support
- Supports both text and image inputs in chat conversations
- Compatible with vision-capable models for image understanding
- Image URL: Optional field to include images in your conversation
- Supported formats: HTTP/HTTPS image URLs or base64 encoded images
- Use cases: Image analysis, visual question answering, content understanding from images
Output
- Standard response:
json.responsecontains the model's reply - Error handling:
json.errorfor any API issues
Examples
Basic Chat Example
{
"model": "gpt-3.5-turbo",
"message": "Hello, how can AI help with automation?",
"temperature": 0.7
}Pseudo-stream Mode
- Enable the Pseudo-stream Mode toggle (below Image URL) when the target model only supports streaming responses, for example Qwen3.
- The node consumes the full stream and still returns a single JSON result so you can read the reply from
json.response. - If the service emits
reasoning_content, it is exposed asjson.reasoningfor easier debugging.
Multimodal Example (Text + Image)
{
"model": "gpt-5",
"message": "What do you see in this image?",
"imageUrl": "https://example.com/image.jpg",
"temperature": 0.5
}Response Example
{
"response": "AI can help with automation in many ways, including data processing, decision making, content generation, and workflow optimization..."
}