From cadc507fad2fee59b23d1d8e73c472c077f468fc Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Sat, 18 Nov 2023 04:38:31 +0100 Subject: Add AiChatOnline, ChatgptDemoAi, ChatgptNext Providers Add OnlineGpt and TalkAi Provider Add get_random_string and get_random_hex helper Remove funcaptcha package --- .../undici/lib/handler/DecoratorHandler.js | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 g4f/Provider/npm/node_modules/undici/lib/handler/DecoratorHandler.js (limited to 'g4f/Provider/npm/node_modules/undici/lib/handler/DecoratorHandler.js') diff --git a/g4f/Provider/npm/node_modules/undici/lib/handler/DecoratorHandler.js b/g4f/Provider/npm/node_modules/undici/lib/handler/DecoratorHandler.js deleted file mode 100644 index 9d70a767..00000000 --- a/g4f/Provider/npm/node_modules/undici/lib/handler/DecoratorHandler.js +++ /dev/null @@ -1,35 +0,0 @@ -'use strict' - -module.exports = class DecoratorHandler { - constructor (handler) { - this.handler = handler - } - - onConnect (...args) { - return this.handler.onConnect(...args) - } - - onError (...args) { - return this.handler.onError(...args) - } - - onUpgrade (...args) { - return this.handler.onUpgrade(...args) - } - - onHeaders (...args) { - return this.handler.onHeaders(...args) - } - - onData (...args) { - return this.handler.onData(...args) - } - - onComplete (...args) { - return this.handler.onComplete(...args) - } - - onBodySent (...args) { - return this.handler.onBodySent(...args) - } -} -- cgit v1.2.3