Spaces:
Runtime error
Runtime error
File size: 325 Bytes
93dc773 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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)
|