Skip to content

Instantly share code, notes, and snippets.

@samirsaci
Created November 14, 2023 08:20
Show Gist options
  • Save samirsaci/105265187d15b029d5748e2f17bdc632 to your computer and use it in GitHub Desktop.
Save samirsaci/105265187d15b029d5748e2f17bdc632 to your computer and use it in GitHub Desktop.
LangChain SQL - Test 1
user_input = "How many shipments were delayed in the first seven days of May?"
try:
print("Question: ", user_input)
result = agent_executor.run(user_input)
print("Result: ", result)
except Exception as e:
print(f"An error occurred: {e}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment