-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
72 lines (62 loc) · 3.23 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const socialIconButtons = document.getElementsByClassName("social-icon");
function postToSocialMedia(classList) {
const content = `Check out my cool generative AI Project 😎 \n${window.location.href.toString()}`;
if (classList.contains("twitter")) {
const url = "https://twitter.com/ChakraTeja70";
window.open(url);
} else if (classList.contains("linkedin")) {
const url = "https://www.linkedin.com/in/chakrateja-polamarasetty-951789238/";
window.open(url);
} else if (classList.contains("Github")) {
const url = "https://github.com/chakrateja70";
window.open(url);
}
}
const addEventListenersToSocialIconButton = () => {
for (let i = 0; i < socialIconButtons.length; i++) {
socialIconButtons[i].addEventListener("click", () =>
postToSocialMedia(socialIconButtons[i].classList)
);
}
};
addEventListenersToSocialIconButton();
const skillIcon = document.getElementsByClassName("tooltip");
const addEventListenersToSkillIcon = () => {
for (let i = 0; i < skillIcon.length; i++) {
skillIcon[i].addEventListener("click", (e) => {
console.log(e.target)
updateDescription(e.target.id);
});
}
};
addEventListenersToSkillIcon();
const descriptionDiv = document.getElementsByClassName("about-section");
const updateDescription = (id) => {
let description = "";
switch (id) {
case "googleColab":
description = "Google Colab: User-friendly platform for code writing, execution, and sharing. Beloved by AI experts, students, developers, and researchers for data analysis, ML, and AI exploration.";
break;
case "gradio":
description = "Gradio: A user-friendly tool that allows to create and share interactive Al Apps without extensive Coding Knowledge.";
break;
case "openAi":
description = "OpenAI: An AI-based chat service powered by Open AI's language model. OpenAI APIs offer access to advanced language models and AI capabilities. Integrate NLP, text generation, and more into your apps to revolutionize communication and problem-solving. ";
break;
case "playHt":
description = "PlayHT: PlayHT is a platform that allows you to clone voices using artificial intelligence. The platform uses a deep learning model to train a voice clone that sounds almost exactly like the original voice.";
break;
case "huggingFace":
description = "HuggingFace: The ultimate destination for building, training, and deploying cutting-edge machine learning models! Revolutionize your AI projects with state-of-the-art NLP and more!";
break;
case "langChain":
description = "LangChain: Seamlessly combine Large Language Models (LLMs) with external computation/data. Build chatbots, analyze data effortlessly. Open source for contributions.";
break;
default:
description = "Description of the selected icon will appear here.";
}
for (let i = 0; i < descriptionDiv.length; i++) {
descriptionDiv[i].textContent = description;
}
};
updateDescription("googleColab");