legal-agent / demo_main.py
Rajarshi-Roy-research
fixed errors
892f454
raw
history blame contribute delete
325 Bytes
from main_app_deploy.components.data_querying import my_query
import os
os.environ["LANGCHAIN_PROJECT"] = "GAME RECOMMENDATION"
os.environ["LANGCHAIN_TRACING_V2"] = "true"
os.environ["LANGCHAIN_API_KEY"] = os.getenv("LANGCHAIN_API_KEY")
ans = my_query("can you reccomend me some fantasy games? about 2 games")
print(ans)