8 lines
108 B

import openai
from openai import OpenAI
#LLM的基类
class LLMBase:
def __init__(self):
pass