Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat : Added subcategory chat bots in aitools and added chatgpt in it… #2405

Merged
merged 9 commits into from
Aug 7, 2024
3 changes: 1 addition & 2 deletions components/TopBar/CategoryDescriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,12 @@ const categoryDescriptions: CategoryDescriptions = {
'Natural Language Processing is a branch of artificial intelligence that focuses on the interaction between computers and human language. It involves the development of algorithms and models that enable machines to understand and generate human language, allowing them to perform tasks like language translation an more. ',

// AI Tools
design:
'design':
'Harness the power of AI-driven editing tools to refine your writing effortlessly. From grammar and style suggestions to readability enhancements, these editors ensure your content shines with clarity and precision',
chatbots:
"Experience seamless interactions and instant assistance with AI chatbots. Whether it's answering queries, providing support, or automating tasks, these intelligent bots deliver personalized responses to enhance user experiences.",
blog_writing:
'Unlock your creativity and streamline your blog writing process with AI-powered tools. From generating ideas to optimizing SEO, these tools empower you to craft engaging content that captivates your audience.',

// cyber-security
offensive_security:
'Offensive security is the proactive approach to securing networks and systems from attacks by actively seeking out vulnerabilities and weaknesses. ',
Expand Down
23 changes: 23 additions & 0 deletions database/ai_tools/chat-bot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[
{
"name": "Chat GPT",
"description": "An AI chat assistance which provides conversational AI services, generating human-like text responses for various user queries and tasks.",
"url": "https://openai.com/chatgpt/",
"category": "ai-tools",
"subcategory": "chat-bot"
},
{
"name": "Gemini Chatbot",
"description": "An AI chat aGemini, formerly known as Bard, is a generative artificial intelligence chatbot developed by Google.Provides conversational AI service and human-like responses",
"url": "https://gemini.google.com/app",
"category": "ai-tools",
"subcategory": "chat-bot"
},
{
"name": "Microsoft Copilot",
"description": "Microsoft Copilot leverages the power of AI to boost productivity, unlock creativity, and helps you understand information better with a simple chat bot.",
"url": "https://copilot.microsoft.com/",
"category": "ai-tools",
"subcategory": "chat-bot"
}
]
6 changes: 5 additions & 1 deletion database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { v4 as uuidv4 } from 'uuid'
export const database: IData[][] = Object.values(DB).map((item: IDBData[]) =>
item.map((subcat: IDBData) => ({ ...subcat, id: uuidv4() }))
)

export const sidebarData: ISidebar[] = [
{
category: 'frontend',
Expand Down Expand Up @@ -234,6 +233,11 @@ export const sidebarData: ISidebar[] = [
url: '/blog_writing',
resources: DB.blog_writing,
},
{
name: 'chat bots',
url: '/chat-bot',
resources: DB.chat_bot,
},
],
},
{
Expand Down
2 changes: 2 additions & 0 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ export { default as nlp } from './artificial_intelligence/NLP.json'
//ai tools
export { default as design } from './ai_tools/design.json'
export { default as blog_writing } from './ai_tools/blog_writing.json'
export { default as chat_bot } from './ai_tools/chat-bot.json'
devansh-dek marked this conversation as resolved.
Show resolved Hide resolved

// Open-source
export { default as openSourceArticles } from './open_source/articles.json'
export { default as openSourcePrograms } from './open_source/os_programs.json'
Expand Down
Loading