Neuroplexus 在 使用 Gemini 来翻译 .srt 字幕文件 中发帖
翻译结果展示
上译下原 模式
[image]
源代码
from fastapi import FastAPI, HTTPException, File, UploadFile
from fastapi.responses import JSONResponse, StreamingResponse
from dotenv import load_dotenv
import os
import google.generativeai as genai
from google.generativeai.types import HarmCategory, HarmBlockThreshold
from typing import List, AsyncGenerator
import re
import asyncio
load_dotenv()
# 创建 FastAPI 应用实例
...