{ "cells": [ { "attachments": {}, "cell_type": "markdown", "metadata": {}, "source": [ "# MoonshotChat\n", "\n", "[Moonshot](https://platform.moonshot.cn/) is a Chinese startup that provides LLM service for companies and individuals.\n", "\n", "This example goes over how to use LangChain to interact with Moonshot." ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [], "source": [ "from langchain_community.llms.moonshot import Moonshot" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import os\n", "\n", "# Generate your api key from: https://platform.moonshot.cn/console/api-keys\n", "os.environ[\"MOONSHOT_API_KEY\"] = \"MOONSHOT_API_KEY\"" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [], "source": [ "llm = Moonshot()\n", "# or use a specific model\n", "# Available models: https://platform.moonshot.cn/docs\n", "# llm = Moonshot(model=\"moonshot-v1-128k\")" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "pycharm": { "is_executing": true } }, "outputs": [], "source": [ "# Prompt the model\n", "llm.invoke(\"What is the difference between panda and bear?\")" ] } ], "metadata": { "kernelspec": { "display_name": ".venv", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.4" }, "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 }