跳至主要内容

Solar

此社区集成已弃用。您应该改用ChatUpstage通过聊天模型连接器访问 Solar LLM。

import os

from langchain_community.llms.solar import Solar

os.environ["SOLAR_API_KEY"] = "SOLAR_API_KEY"
llm = Solar()
llm.invoke("tell me a story?")
API 参考:Solar
from langchain.chains import LLMChain
from langchain_community.llms.solar import Solar
from langchain_core.prompts import PromptTemplate

template = """Question: {question}

Answer: Let's think step by step."""

prompt = PromptTemplate.from_template(template)

llm = Solar()
llm_chain = LLMChain(prompt=prompt, llm=llm)

question = "What NFL team won the Super Bowl in the year Justin Beiber was born?"

llm_chain.run(question)
API 参考:LLMChain | Solar | PromptTemplate

此页面是否有帮助?


您也可以在 GitHub 上留下详细反馈 在 GitHub 上.