entity_extraction/submit_test.py

31 lines
1.8 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import os, sys
base_dir = os.path.dirname(os.path.abspath(__file__))
relative_path = os.path.join(base_dir, "iCloudEngine/src")
sys.path.append(relative_path)
from queue_client import QueueClient
class submit_test:
def submit(code, data):
client = QueueClient()
returnData = client.call(code, data)
print(returnData)
# # 创建一个测试队列3000 / 实体关系提取。输入一段话,提取人物姓名、性别、出生日期、年龄、职位等信息
# submit_test.submit(
# 3000,
# {
# "text": "范九伦简历\n\n范九伦汉族1964年11月生研究生民盟盟员、中共党员现任民盟中央常委、陕西省委会主委省政协副主席西安邮电大学校长"
# },
# )
submit_test.submit(
3000,
{
"text": "中国经济网昆明12月1日综合报道 据昆明发布消息12月1日上午昆明市、滇中新区召开领导干部大会宣布省委有关干部任免职决定。刘洪建同志任昆明市委委员、常委、书记滇中新区党工委书记。程连元同志不再担任昆明市委书记、常委、委员滇中新区党工委书记职务。\n公开资料显示刘洪建1973年1月生曾长期在福建省任职历任福建省旅游发展集团有限责任公司总经理、董事、党委副书记南平市委副书记、市长等职务2020年7月升任云南省副省长今年5月出任云南省委常委、政法委书记。近日云南省委换届刘洪建再次当选为云南省委常委。\n程连元出生于1961年12月北京人曾长期在北京工作历任北京朝阳区区长、区委书记等职务2015年起任云南昆明市委书记2016年3月出任云南省委常委。近日云南省委换届程连元不再担任云南省委常委。"
},
)