9 lines
340 B
Plaintext
9 lines
340 B
Plaintext
# -*- coding: utf-8 -*-
|
||
# get_search_entity.dspy — 实体下拉(entity 参数绑定块时选择目标实体)
|
||
# GET /drag/api/get_search_entity.dspy → [{value, text}]
|
||
try:
|
||
result = await get_entity_options()
|
||
return result
|
||
except Exception as e:
|
||
return {'success': False, 'message': 'get_search_entity.dspy: ' + str(e)}
|