add workflow 招聘信息导入,dev

This commit is contained in:
root 2026-02-26 15:14:34 +08:00
parent 04c50c1562
commit 35dd569e67
1 changed files with 3 additions and 3 deletions

View File

@ -260,7 +260,7 @@ def main():
# API配置
api_config = {
'url': 'http://tk-agent.idgvalue.com/v1/workflows/run',
'url': 'https://tk-agent.idgvalue.com/v1/workflows/run',
'auth_token': 'Bearer app-siNKLRExkzO9IM81P8hHuBx2'
}
@ -298,7 +298,7 @@ ORDER BY doc_time DESC """
for i, text in enumerate(list, 1):
logger.info(f"处理第 {i}/{len(list)} 个数据: {text}")
if type is 'workflow':
if type == 'workflow':
# 方法1: 使用带inputs参数的调用
inputs_data = {
"content": f"{text}",
@ -335,7 +335,7 @@ ORDER BY doc_time DESC """
else:
logger.info("调用不带inputs参数的API示例")
if type is 'workflow':
if type == 'workflow':
result2 = api_client.call_api_without_inputs()
if result2['success']: