2023-10-26 01:47:42 +00:00
|
|
|
from openai_functions_agent.agent import agent_executor
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
question = "who won the womens world cup in 2023?"
|
2024-02-10 00:13:30 +00:00
|
|
|
print(agent_executor.invoke({"input": question, "chat_history": []})) # noqa: T201
|