1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| import os from langchain_core.output_parsers import JsonOutputParser from langchain_core.prompts import PromptTemplate from langchain_core.pydantic_v1 import BaseModel, Field from langchain_openai import ChatOpenAI
os.environ["OPENAI_API_KEY"] = "sk-****************"
os.environ["OPENAI_API_BASE"] = "https://apivip.aiproxy.io/v1"
model = ChatOpenAI(temperature=0)
class Joke(BaseModel): setup: str = Field(description="question to set up a joke") punchline: str = Field(description="answer to resolve the joke")
@classmethod def model_json_schema(cls): return { "title": "Joke", "type": "object", "properties": { "setup": { "type": "string", "description": "question to set up a joke" }, "punchline": { "type": "string", "description": "answer to resolve the joke" } }, "required": ["setup", "punchline"] }
parser = JsonOutputParser(pydantic_object=Joke)
prompt = PromptTemplate( template="Tell me a joke.\n{format_instructions}\n", partial_variables={"format_instructions": parser.get_format_instructions()}, )
chain = prompt | model | parser
result = chain.invoke({}) print(result)
|