workflows/unit_tests/minimax_util.py

10 lines
189 B
Python
Raw Normal View History

2024-01-18 14:35:50 +08:00
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "libs"))
from llm_api import (
chat_completion_no_stream_return_json,
chat_completion_stream,
)