From 6a969e389795d32d7f5542ed5bcc60700def8027 Mon Sep 17 00:00:00 2001 From: zachary62 Date: Thu, 17 Jul 2025 06:45:50 +0000 Subject: [PATCH] remove main.py --- cookbook/pocketflow-fastapi-hitl/main.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 cookbook/pocketflow-fastapi-hitl/main.py 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