#flows #cloud #google-cloud #vision #text #networking #flow

google-cloud-service-flows

flows.network 的 Google Cloud 服务集成

1 个不稳定版本

0.1.0 2023年7月6日

#27#flows

MIT/Apache

14KB
171

这是一个用于在 flows.network 的流程函数中使用 Cloud Vision 的库。

使用示例

use cloud_vision_flows::text_detection;
use lambda_flows::{request_received, send_response};

#[no_mangle]
pub fn run() {
    request_received(|_qry, body| {
        let text = text_detection(String::from_utf8(body).unwrap());
        match text {
            Ok(r) => send_response(
                200,
                vec![(
                    String::from("content-type"),
                    String::from("text/plain; charset=UTF-8"),
                )],
                r.as_bytes().to_vec(),
            ),
            Err(e) => send_response(
                500,
                vec![(
                    String::from("content-type"),
                    String::from("text/plain; charset=UTF-8"),
                )],
                e.as_bytes().to_vec(),
            ),
        }
    });
}

此 Lambda 函数的原始请求体将被传递到 text_detection,然后函数响应检测到的文本。

整个文档在这里

依赖项

~1–1.8MB
~41K SLoC