File size: 162 Bytes
b7708d6
594ce5e
 
b7708d6
594ce5e
 
 
b7708d6
 
 
594ce5e
1
2
3
4
5
6
7
8
9
10
11
12
import os
from dotenv import load_dotenv

from langchain_openai import ChatOpenAI

load_dotenv()

llm = ChatOpenAI(
    model="gpt-4o-mini",
    temperature=0,
)