唐三藏 (@2171)给oi也安排上了WebPilot 中发帖

import requests
import asyncio
import json
from typing import Callable, Any, Optional

EmitterType = Optional[Callable[[dict], Any]]
SendCitationType = Callable[[str, str, str], None]
SendStatusType = Callable[[str, bool], None]


def get_send_citation(__event_emitter__: EmitterType) -> SendCitationType:
async def send_citation(url: str, title: str, content: str):
if __event_emitter_...