#nlp #generative-ai #generative #ai

gpt_text

openai文本包装器,仅封装了一层功能

8个版本

0.1.7 2024年1月9日
0.1.6 2023年8月3日

#294 in 机器学习

每月31次下载

MIT许可证

8KB
72

gpt_text_wrapper

This is a encaplusate version of openai version called "fieri" . The basic function of this module is to reduce the excutation cycles such as nlp related tasks.

结构

  gpt_text 
  |------------- src
		|-------------lib.rs
  |------------- cargo.toml

模块

-> openai

代码

use gpt_text::openai;

let mut openc : _ = openai::new("cat translate into japanese".to_string(), "".to_string(), "cat".len().try_into().unwrap());
    
let wrap_gpt : _ = openc.openai_text_wrapper(openai_apikey).await{

        Ok(text) => text,
        Err(err) => panic!("Error = {:?}", err),
};

println!("Response = {:?}", wrap_gpt);

安装

cargo add gpt_text

文档

cargo doc --open	 

依赖项

~10–23MB
~348K SLoC