From dc04ca93060443a3ce6263a476f4dafc66afc6b3 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Sat, 28 Oct 2023 07:21:00 +0200 Subject: Add arkose_token to OpenaiChat --- .../npm/node_modules/undici/lib/dispatcher.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 g4f/Provider/npm/node_modules/undici/lib/dispatcher.js (limited to 'g4f/Provider/npm/node_modules/undici/lib/dispatcher.js') diff --git a/g4f/Provider/npm/node_modules/undici/lib/dispatcher.js b/g4f/Provider/npm/node_modules/undici/lib/dispatcher.js new file mode 100644 index 00000000..9b809d89 --- /dev/null +++ b/g4f/Provider/npm/node_modules/undici/lib/dispatcher.js @@ -0,0 +1,19 @@ +'use strict' + +const EventEmitter = require('events') + +class Dispatcher extends EventEmitter { + dispatch () { + throw new Error('not implemented') + } + + close () { + throw new Error('not implemented') + } + + destroy () { + throw new Error('not implemented') + } +} + +module.exports = Dispatcher -- cgit v1.2.3