mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-19 13:23:23 +08:00
14 lines
335 B
Python
14 lines
335 B
Python
import os
|
|
import sys
|
|
import json
|
|
from unittest.mock import AsyncMock, MagicMock
|
|
import unittest
|
|
|
|
from unittest.mock import AsyncMock
|
|
from fastapi import WebSocket, WebSocketDisconnect
|
|
|
|
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
|
|
|
|
from api.chatbot import websocket_endpoint, manager, llm_chat
|
|
|