This commit is contained in:
kwaroran
2024-11-11 20:45:29 +09:00
2 changed files with 4 additions and 4 deletions

View File

@@ -206,7 +206,7 @@
function RenderGUIHtml(html:string){ function RenderGUIHtml(html:string){
try { try {
const parser = new DOMParser() const parser = new DOMParser()
const doc = parser.parseFromString(risuChatParser(html ?? ''), 'text/html') const doc = parser.parseFromString(risuChatParser(html ?? '', {cbsConditions: getCbsCondition()}), 'text/html')
console.log(doc.body) console.log(doc.body)
return doc.body return doc.body
} catch (error) { } catch (error) {

View File

@@ -2059,12 +2059,12 @@ export async function requestChatDataMain(arg:requestDataArgument, model:'model'
"anthropic.claude-3-5-sonnet-20241022-v2:0" "anthropic.claude-3-5-sonnet-20241022-v2:0"
]; ];
const awsModel = const awsModel = "us." + (
raiModel.includes("3-5-sonnet-20241022") ? modelIDs[6] : raiModel.includes("3-5-sonnet-20241022") ? modelIDs[6] :
raiModel.includes("3-5-sonnet-20240620") ? modelIDs[5] : raiModel.includes("3-5-sonnet-20240620") ? modelIDs[5] :
raiModel.includes("3-opus") ? modelIDs[4] : raiModel.includes("3-opus") ? modelIDs[4] :
raiModel.includes("3-sonnet") ? modelIDs[3] : raiModel.includes("3-sonnet") ? modelIDs[3] :
modelIDs[2]; modelIDs[2]);
const url = `https://${host}/model/${awsModel}/invoke${stream ? "-with-response-stream" : ""}` const url = `https://${host}/model/${awsModel}/invoke${stream ? "-with-response-stream" : ""}`
const params = { const params = {