File size: 349 Bytes
bd98b76 |
1 2 3 4 5 6 7 8 9 10 11 12 |
function updateModelInfo() {
const selectedModel = chooseModel.value;
modelInfo.textContent =
modelDetails[selectedModel] || "No information available for this model.";
}
//for test only
// function showHistory() {
// console.log(imageHistoryInstance.history, "history");
// historyContainer.classList.remove("hidden");
// }
|