【软件界面】
【测试通过环境】
vs2019
netframework4.7.2
【使用步骤】
由于调用百度接口需要首先去https://login.bce.baidu.com/去注册或者登录自己的账号,进去后界面如下:
然后点击左上角九个点图标
然后点击百度智能云千帆大模型平台
点击应用接入然后选择创建应用即可获取自己的apikey和secretkey
接下来填入软件界面即可
【部分实现代码】
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using FIRC;
namespace FIRC
{
public partial class Form1 : Form
{
WenXinManager wm = new WenXinManager();
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if(string.IsNullOrEmpty(tb_question.Text))
{
tssl_show.Text = "问题不能为空!";
return;
}
tssl_show.Text = "正在拉取回答...";
tb_answer.Text = wm.GetResult(tb_question.Text);
tssl_show.Text = "获取结果已完成!";
}
private void btn_key_Click(object sender, EventArgs e)
{
wm.SetKey(tb_apikey.Text,tb_secretkey.Text);
tssl_show.Text = "设置KEY成功!";
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
【视频演示】
【源码下载】
https://download.csdn.net/download/FL1623863129/88601005
标签:一言大,show,C#,Text,System,Python,文心,using,tb From: https://blog.csdn.net/FL1623863129/article/details/140971052