Skip to main content

MoonshotChat

Moonshot is a Chinese startup that provides LLM service for companies and individuals.

This example goes over how to use LangChain to interact with Moonshot.

from langchain_community.llms.moonshot import Moonshot

API Reference:

import os

# Generate your api key from: https://platform.moonshot.cn/console/api-keys
os.environ["MOONSHOT_API_KEY"] = "MOONSHOT_API_KEY"
llm = Moonshot()
# or use a specific model
# Available models: https://platform.moonshot.cn/docs
# llm = Moonshot(model="moonshot-v1-128k")
# Prompt the model
llm.invoke("What is the difference between panda and bear?")

Help us out by providing feedback on this documentation page: