[文章]用HarmonyOS元服务万能卡片训练一下文心一言的AIGC能力

阅读量0
0
0

一、部分效果图展示

1.服务卡片

 用HarmonyOS元服务万能卡片训练一下文心一言的AIGC能力-开源基础软件社区
2.AIGC服务

 用HarmonyOS元服务万能卡片训练一下文心一言的AIGC能力-开源基础软件社区

二、DEMO说明

本Demo案例只是使用了HarmonyOS元服务卡片连接合规外网的能力进行AIGC元服务卡片概念演示,还不足以成为一个正式上架运营的元服务与万能卡片。

我们认为基于AIGC能力类型的HarmonyOS元服务万能卡片应该通过API方式调用合规训练后的各具特色的模型与角色来服务用户,通过万能卡片、智能语音、手势动作等更加自然友好的方式来和用户交互。

我们既对互联网、移动互联网的多种应用形式进行了HarmonyOS原子化服务卡片的尝试,也会基于AIGC对HarmonyOS元服务与万能卡片进行探索。特别期待的是盘古大模型对HarmonyOS元服务、应用的全面开放与支持。

三、部分代码

widget代码:
index.hml

<div class="container" onclick="routerEvent">
    <button class="btn" type="text" onclick="routerEvent">{{title}}</button>
</div>

index.css

.container {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url('/common/ai.jpg');
    background-size: cover;

}
.btn{
    font-size: 16px;
    font-weight: bold;
    text-color: #fffff869;
}

index.json

{
  "data": {
    "title": "AI 服务"
  },
  "actions": {
    "routerEvent": {
      "action": "router",
      "bundleName": "com.example.aidemo.hmservice",
      "abilityName": "com.example.aidemo.MainAbility",
      "params": {
        "message": "add detail"
      }
    }
  }
}

2.page代码:

index.hml

<div >
    <web src="{{ path }}" onpagestart="pageStart" onpagefinish="pageFinish" on:error="pageError"></web>
</div>

index.css

.container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

index.js

export default {
    data: {
        path: "https://yiyan.baidu.com/invitationCode"
    },
    reloadWeb() {
        this.$element('web').reload()
    },

    pageStart: function(e) {
        console.info('web pageStart: ' + e.url)
    },

    pageFinish: function(e) {
        console.info('web pageFinish: ' + e.url)
    },

    pageError: function(e) {
        console.info('web pageError url: ' + e.url)
        console.info('web pageError errorCode: ' + e.errorCode)
        console.info('web pageError description: ' + e.description)
    }
}

四、完整代码地址
https://gitee.com/jltfcloudcn/jump_to/tree/master/AiDemo

回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友