19 Star 0 Fork 2

openKylin / kylin-xunfei-vision-engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
xunfeivisionengine_p.h 2.44 KB
一键复制 编辑 原始数据 按行查看 历史
flywm 提交于 2024-05-23 15:28 . 适配kylin-ai-engine最新接口
/*
* Copyright 2024 KylinSoft Co., Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef XUNFEIVISIONENGINE_P_H
#define XUNFEIVISIONENGINE_P_H
#include <functional>
#include <string>
#include <kylin-ai/ai-engine/large-model/aiengineerror.h>
#include <kylin-ai/ai-engine/large-model/cloudvisionengine.h>
#include <cpr/cpr.h>
class XunfeiVisionEnginePrivate : public ai_engine::lm::vision::AbstractCloudVisionEngine {
public:
XunfeiVisionEnginePrivate();
~XunfeiVisionEnginePrivate();
std::string engineName() const override;
void setConfig(const std::string &config) override;
std::string modelInfo() const override;
int maxConcurrentPrompt2ImageTasks() const override;
void setPrompt2ImageCallback(ai_engine::lm::vision::ImageResultCallback callback) override;
void setPrompt2ImageSize(int width, int height) override;
void setPrompt2ImageNumber(int number) override;
void setPrompt2ImageStyle(int style) override;
std::string supportedPrompt2ImageParams() const override;
bool prompt2Image(const std::string &prompt, ai_engine::lm::EngineError &error) override;
private:
std::string appId_;
std::string apiKey_;
std::string secretKey_;
std::string hostUrl_{"https://spark-api.cn-huabei-1.xf-yun.com/v2.1/tti"};
ai_engine::lm::vision::ImageResultCallback imageResultCallback_;
friend bool writePrompt2ImageResult(std::string data, intptr_t userData);
bool processPrompt2ImageResult(cpr::Response &response, ai_engine::lm::EngineError &error);
int imageWidth_{1024};
int imageHeight_{1024};
int imageNumber_{1};
std::string imageStyle_;
std::string incompleteResult_;
ai_engine::lm::EngineError currentError_;
bool currentStatus();
void runCallbackWithError(const ai_engine::lm::EngineError &error, const int &index, const int &total);
};
#endif // XUNFEIVISIONENGINE_P_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openkylin/kylin-xunfei-vision-engine.git
git@gitee.com:openkylin/kylin-xunfei-vision-engine.git
openkylin
kylin-xunfei-vision-engine
kylin-xunfei-vision-engine
upstream

搜索帮助

344bd9b3 5694891 D2dac590 5694891