diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 1f3fec5..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index 5d381cc..ba19c78 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,5 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +# ignore apple ds_store +.DS_Store \ No newline at end of file diff --git a/analysis_pipeline.py b/analysis_pipeline.py index 7c8e1c2..8ea2fdf 100644 --- a/analysis_pipeline.py +++ b/analysis_pipeline.py @@ -1,5 +1,6 @@ import pandas as pd from AgentProxy import AgentProxy +from datetime import datetime # Add this import # Here you need to replace the API Key and API Secret with your,I provide a test key and secret here api_key = '25bda2c39c0f8ca0' @@ -50,7 +51,7 @@ for index, row in df.iterrows(): try: detailed_status = row['当前详细状态及Close节奏'] - print(f"Processing row {index}") + print(f"Processing row {index} at current time: {datetime.now()}") detailed_current_stage = row['Sales stage'] prompt = (f"某公司当前销售定义为 {sales_stage_definition}, " f"当前销售阶段为 {detailed_current_stage}, "