Neuroplexusdeno <think> 转 reasoning_content 中发帖

// deno run --allow-net --allow-read thisfile.ts
import { serve } from "https://deno.land/std@0.220.1/http/server.ts";

const DEEPINFRA_API_BASE = "https://api.deepseek.com/v1";
const DEBUG = true; // Set to true to enable debug logging, false to disable
const FORWARD_CLIENT_HEADERS = true; // Set to true to forward client headers, false to not

function logDebug(...args: any[]) {
if (DEBUG) {
...