I am newbie to langsmith platform . Just wrote a simple code with different api keys set up in the environment. But Iam not able to track the same when I log in into my account . I have generated and tried 3 different API keys for langsmith and open AI for the eventhough Iam able to generate output at local.Please suggest.
Below is the code
import os
from dotenv import load_dotenv
load_dotenv()
os.environ['OPENAI_API_KEY']=os.getenv("OPENAI_API_KEY")
## Langsmith Tracking
os.environ["LANGCHAIN_API_KEY"]=os.getenv("LANGCHAIN_API_KEY")
os.environ["LANGCHAIN_TRACING_V2"]="true"
os.environ["LANGCHAIN_PROJECT"]=os.getenv("LANGCHAIN_PROJECT")
from langchain_openai import ChatOpenAI
llm=ChatOpenAI(model="gpt-4o")
print(llm)
## Input and get response form LLM
result=llm.invoke("What is generative AI?")