remove main.py

This commit is contained in:
zachary62 2025-07-17 06:45:50 +00:00
parent 67bc5d8775
commit 6a969e3897
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
from flow import qa_flow
# Example main function
# Please replace this with your own main function
def main():
shared = {
"question": "In one sentence, what's the end of universe?",
"answer": None
}
qa_flow.run(shared)
print("Question:", shared["question"])
print("Answer:", shared["answer"])
if __name__ == "__main__":
main()