fix: address LLM square bracket mapping format and resolve Biome import formatting

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-05-18 04:40:54 +07:00
co-authored by Claude Opus 4.7
parent cc2c247311
commit 1085d7909c
14 changed files with 46 additions and 24 deletions
+6 -6
View File
@@ -1,15 +1,15 @@
import { EventEmitter } from "node:events";
import { PassThrough } from "node:stream";
import type { Readable } from "node:stream";
import type { ChildProcess } from "node:child_process";
import type { Client } from "discord.js-selfbot-v13";
import { EventEmitter } from "node:events";
import type { Readable } from "node:stream";
import { PassThrough } from "node:stream";
import {
Streamer as DankStreamer,
prepareStream as dankPrepareStream,
playStream as dankPlayStream,
Utils,
prepareStream as dankPrepareStream,
Encoders,
Utils,
} from "@dank074/discord-video-stream";
import type { Client } from "discord.js-selfbot-v13";
type VoiceConnectionLike = any;
type StreamConnectionLike = any;
+3 -3
View File
@@ -1,9 +1,9 @@
import { spawn, ChildProcess } from "node:child_process";
import { PassThrough } from "node:stream";
import { ChildProcess, spawn } from "node:child_process";
import type { Readable } from "node:stream";
import { retryWithBackoff } from "../retry";
import { PassThrough } from "node:stream";
import { createChildLogger } from "../logger";
import { transcoderRestartsCounter, transcoderRunningGauge } from "../metrics";
import { retryWithBackoff } from "../retry";
const logger = createChildLogger("transcoder");