# Code generated by Lark OpenAPI. import lark_oapi as lark from lark_oapi.api.lingo.v1 import * def main(): # 创建client client = lark.Client.builder() \ .app_id(lark.APP_ID) \ .app_secret(lark.APP_SECRET) \ .log_level(lark.LogLevel.DEBUG) \ .build() # 构造请求对象 request: HighlightEntityRequest = HighlightEntityRequest.builder() \ .request_body(HighlightEntityRequestBody.builder() .text("企业百科是飞书提供的一款知识管理工具") .build()) \ .build() # 发起请求 response: HighlightEntityResponse = client.lingo.v1.entity.highlight(request) # 处理失败返回 if not response.success(): lark.logger.error( f"client.lingo.v1.entity.highlight failed, code: {response.code}, msg: {response.msg}, log_id: {response.get_log_id()}") return # 处理业务结果 lark.logger.info(lark.JSON.marshal(response.data, indent=4)) # 异步方式 async def amain(): # 创建client client = lark.Client.builder() \ .app_id(lark.APP_ID) \ .app_secret(lark.APP_SECRET) \ .log_level(lark.LogLevel.DEBUG) \ .build() # 构造请求对象 request: HighlightEntityRequest = HighlightEntityRequest.builder() \ .request_body(HighlightEntityRequestBody.builder() .text("企业百科是飞书提供的一款知识管理工具") .build()) \ .build() # 发起请求 response: HighlightEntityResponse = await client.lingo.v1.entity.ahighlight(request) # 处理失败返回 if not response.success(): lark.logger.error( f"client.lingo.v1.entity.ahighlight failed, code: {response.code}, msg: {response.msg}, log_id: {response.get_log_id()}") return # 处理业务结果 lark.logger.info(lark.JSON.marshal(response.data, indent=4)) if __name__ == "__main__": # asyncio.run(amain()) 异步方式 main()