欧联杯官方合作伙伴金沙直播app官宣 - 金沙直播app


欧联杯官方合作伙伴金沙直播app官宣简介
智渊摄影工作室目前经营范围包括自媒体运营、短视频代运营、写真拍摄、视频制作、云打印等欧联杯官方合作伙伴金沙直播app官宣,目前旗下自有个人IP“奇奇怪怪菌”抖音粉丝1.2W,在抖音平台教授摄影、修图后期知识,并进行线上课程售卖。 同类内容同时本欧联杯官方合作伙伴金沙直播app官宣目前与山东昆达钢铁有限欧联杯官方合作伙伴金沙直播app官宣、东昌博凯汽贸有限欧联杯官方合作伙伴金沙直播app官宣等达成合作,为其进行短视频代运营,打造欧联杯官方合作伙伴金沙直播app官宣个人IP,实现线上拓客。本欧联杯官方合作伙伴金沙直播app官宣也在积极拓展欧联杯官方合作伙伴金沙直播app官宣写真拍摄、视频制作与云打印服务。打造以视频、图片拍摄制作为核心的多元化传媒服务平台。
负责人简介
王瑞,2019级传媒技术欧联杯官方合作伙伴金沙直播app官宣欧联杯官方合作伙伴金沙直播app官宣,毕业后基于专业创业,创办平邑智渊摄影工作室,在校期间曾获以下奖项和荣誉称号: 同题参见
1.欧联杯官方合作伙伴金沙直播app官宣2023届优秀毕业生
2.抖音万粉后期博主“奇奇怪怪菌”
3.全国青少年零碳科技大展影视动画青年组全国十佳作品(编剧兼摄影师)
4.儒家经典跨语言诵读大会优秀演绎作品(负责人)
5.《中国诗词大会》第六季省赛晋级
6. 首届中国传统智力游戏全国挑战赛大中专欧联杯官方合作伙伴金沙直播app官宣组九连环解环挑战赛第一名;
7. 世界休闲大会益智玩具挑战赛社会组九连环解环挑战赛第二名;
更多内容
若需了解「欧联杯官方合作伙伴金沙直播app官宣」的上下文,可结合站内栏目与相关篇目对照查看。
栏目用于追新,文内链接用于对照细节。这样安排可减少漏读与重复检索。
若从搜索引擎进入,可先确认当前栏目名称,再按需打开相关阅读。
- 部门简介
- 其它荣誉
- 校内基地
- 网站首页
- 校内导师
- 部门概况
- 欧联杯官方合作伙伴金沙直播app官宣级政策
- 校外基地
- 双创动态
内容地图
网站首页 / fhqy / rzfhqy
创新创业智能体
${res.data.historyConversation[i].conversationContent}
`);
} else if (res.data.historyConversation[i].role === "user") {
aiChatBody.append(`
${res.data.historyConversation[i].conversationContent}
`);
}
}
} else {
aiChatBody.append(`
创新创业智能体
您好呀,我是该网站的创新创业智能向导,有关该大创的所有问题都可以问我哦~针对您的问题,我将会及时给出回复,助您快速了解大创的相关信息!
`);
}
refreshAiChatBodyHeight();
},
error: function(jqXHR, textStatus, errorThrown) {
console.error("AJAX request failed: " + textStatus);
}
})
}
function apiKeySelfCheck() {
jQuery.ajax({
url: "https://wiscom.donglistudio.com/ai/base/apiKeySelfCheck",
type: "GET",
dataType: "json",
beforeSend: function(xhr) {
xhr.setRequestHeader("token", window.localStorage.getItem("token"));
},
success: function(_) {
},
error: function(jqXHR, textStatus, errorThrown) {
console.error("AJAX request failed: " + textStatus);
}
})
}
function sendAiText() {
const aiTextareaVal = aiTextarea.val();
aiTextarea.val("");
aiChatBody.append(`
`);
refreshAiChatBodyHeight();
fetch("https://wiscom.donglistudio.com/ai/chat/conversationReply", {
method: "POST",
body: JSON.stringify({
"message": aiTextareaVal ? aiTextareaVal : "你好",
"characterId": window.localStorage.getItem("characterId"),
"supportFunctionCall": false
}),
headers: {
"content-type": "application/json",
"token": window.localStorage.getItem("token")
}
})
.then(async function(response) {
const reader = response.body.pipeThrough(new TextDecoderStream()).getReader();
let buffer = "";
let flag = false;
let data = '';
while (true) {
let { done, value } = await reader.read();
if (done) break;
buffer += value;
let messages = buffer.split("\n"); // 使用换行符作为分隔符
buffer = messages.pop(); // 保留最后一部分可能是不完整的消息
for (let message of messages) {
if (message) {
try {
data += JSON.parse(message.replace('undefined', '')).data.reply;
if (!flag) {
aiChatBody.append(`
`);
flag = true;
} else {
const lastChild = aiChatBody.children().last();
lastChild.html(`
创新创业智能体
${data}
`);
}
refreshAiChatBodyHeight();
} catch (_) {
}
}
}
}
}).then(function (_) {
isAiChatResponding = false;
aiSend.css("backgroundColor", "#0277bd");
});
}
function refreshAiChatBodyHeight() {
const currentHeight = aiChatBody.prop("scrollHeight");
if (currentHeight != previousHeight) {
// 如果高度发生变化,将滚动条设置到最底部
aiChatBody.scrollTop(aiChatBody[0].scrollHeight);
previousHeight = currentHeight;
}
}
(function() {
if (!window.localStorage.getItem("token")) {
jQuery.ajax({
url: "https://wiscom.donglistudio.com/common/user/public/aiAgent/login/lcuCollegeOfInnovationAndEnterprenurship",
type: "GET",
crossOrigin: true,
dataType: "json",
success: function(res) {
window.localStorage.setItem(res.data.tokenName, res.data.tokenValue);
getAiCharacterId();
apiKeySelfCheck();
},
error: function(jqXHR, textStatus, errorThrown) {
console.error("AJAX request failed: " + textStatus);
}
})
} else {
getChatHistory();
apiKeySelfCheck();
}
})()
document.addEventListener("keydown", function (e) {
if (e.key === "Enter" && e.shiftKey && isAiChatOpen) {
if (isAiChatResponding) return;
aiSend.css("backgroundColor", "#e0e9e8");
isAiChatResponding = true;
sendAiText();
}
if (e.key === 'Escape' && isAiChatOpen) {
isAiChatOpen = false;
aiTextarea.val("");
aiChat.css("opacity", 0);
}
})
aiTextarea.on("keydown", function (e) {
if (e.key === "Enter" && e.shiftKey && isAiChatOpen) {
if (isAiChatResponding) return;
aiSend.css("backgroundColor", "#e0e9e8");
isAiChatResponding = true;
sendAiText();
}
})
aiButton.on("click", function() {
isAiChatOpen = true;
aiTextarea.focus();
aiChat.css({
"opacity": 1,
"display": "block"
});
})
aiChatClose.on("click", function() {
isAiChatOpen = false;
aiTextarea.val("");
aiChat.css({
"opacity": 0,
"display": "none"
});
})
aiSend.on("click", function() {
if (isAiChatResponding) return;
aiSend.css("backgroundColor", "#e0e9e8");
isAiChatResponding = true;
sendAiText();
})