Merge branch 'main' of http://192.168.2.212:3000/digisky/market_assistant
# Conflicts: # analysis_pipeline.py
This commit is contained in:
commit
f42fc08d70
|
|
@ -160,3 +160,5 @@ cython_debug/
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
|
# ignore apple ds_store
|
||||||
|
.DS_Store
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from AgentProxy import AgentProxy
|
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
|
# Here you need to replace the API Key and API Secret with your,I provide a test key and secret here
|
||||||
api_key = '25bda2c39c0f8ca0'
|
api_key = '25bda2c39c0f8ca0'
|
||||||
|
|
@ -50,7 +51,7 @@ for index, row in df.iterrows():
|
||||||
|
|
||||||
try:
|
try:
|
||||||
detailed_status = row['当前详细状态及Close节奏']
|
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']
|
detailed_current_stage = row['Sales stage']
|
||||||
prompt = (f"某公司当前销售定义为 {sales_stage_definition}, "
|
prompt = (f"某公司当前销售定义为 {sales_stage_definition}, "
|
||||||
f"当前销售阶段为 {detailed_current_stage}, "
|
f"当前销售阶段为 {detailed_current_stage}, "
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue