diff --git a/cookbook/pocketflow-fastapi-hitl/main.py b/cookbook/pocketflow-fastapi-hitl/main.py deleted file mode 100644 index 05805c5..0000000 --- a/cookbook/pocketflow-fastapi-hitl/main.py +++ /dev/null @@ -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() \ No newline at end of file