Skip to content

Instantly share code, notes, and snippets.

@midshipman
midshipman / dify_api.js
Last active November 1, 2024 19:56
Sample node.js code to use Dify Bot API in stream mode
const fetch = require('node-fetch');
class DifyService{
constructor(apiUrl, apiKey) {
this.apiUrl = apiUrl;
this.apiKey = apiKey;
this.conversation_ids = new Map();
}
async getResponse(query, number) {