21 lines
465 B
Python
21 lines
465 B
Python
# from langchain_tools.llm import load_llm_openai
|
|
# import yaml
|
|
#
|
|
# with open("langgraph_tools/prompts.yaml", "r") as f:
|
|
# PROMPTS = yaml.safe_load(f)
|
|
#
|
|
#
|
|
# llm = load_llm_openai()
|
|
# query = "Necesito informacion sobre la tienda."
|
|
# prompt = PROMPTS["classifier"]["system"].format(query=query)
|
|
#
|
|
# response: dict = llm.invoke(prompt)
|
|
#
|
|
# print(response.content)
|
|
|
|
from langgraph_tools.tools.general_info import get_link_page
|
|
|
|
|
|
link = get_link_page()
|
|
print(link)
|