Appearance
openai_api_base
/v1/chat/completions
from langchain.chat_models import ChatOpenAI llm = ChatOpenAI( openai_api_base="https://api.bltcy.ai/v1/chat/completions", openai_api_key="sk-xxxxx", ) res = llm.predict("hello") print(res)