-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terminal based chatbot written in vint
- Loading branch information
1 parent
5df1aa6
commit 5129843
Showing
11 changed files
with
613 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
{ | ||
"questions": [ | ||
{ | ||
"question": "hi", | ||
"answer": "hello" | ||
}, | ||
{ | ||
"question": "ho", | ||
"answer": "yui" | ||
}, | ||
{ | ||
"question": "hello", | ||
"answer": "how are you?" | ||
}, | ||
{ | ||
"question": "i love coding", | ||
"answer": "Yes, me too." | ||
}, | ||
{ | ||
"question": "hi how are you", | ||
"answer": "I'm fine" | ||
}, | ||
{ | ||
"question": "what's your name?", | ||
"answer": "I'm a chatbot created to assist you." | ||
}, | ||
{ | ||
"question": "what's the weather like?", | ||
"answer": "I'm not able to check the weather currently." | ||
}, | ||
{ | ||
"question": "tell me a joke", | ||
"answer": "Why don't programmers like nature? It has too many bugs." | ||
}, | ||
{ | ||
"question": "what's your favorite programming language?", | ||
"answer": "I don't have preferences, but I can help you with many languages!" | ||
}, | ||
{ | ||
"question": "who created you?", | ||
"answer": "I was created by a team of developers." | ||
}, | ||
{ | ||
"question": "what can you do?", | ||
"answer": "I can answer your questions, chat with you, and provide information." | ||
}, | ||
{ | ||
"question": "do you know any quotes?", | ||
"answer": "Here's one: 'Code is like humor. When you have to explain it, it’s bad.' - Cory House" | ||
}, | ||
{ | ||
"question": "how old are you?", | ||
"answer": "I don't age like humans do. I'm always learning and improving." | ||
}, | ||
{ | ||
"question": "what is AI?", | ||
"answer": "AI stands for Artificial Intelligence, which is the simulation of human intelligence in machines." | ||
}, | ||
{ | ||
"question": "what is your purpose?", | ||
"answer": "My purpose is to assist and provide information to users." | ||
}, | ||
{ | ||
"question": "what is JavaScript?", | ||
"answer": "JavaScript is a versatile programming language commonly used in web development for creating interactive elements on websites." | ||
}, | ||
{ | ||
"question": "what is Python?", | ||
"answer": "Python is a high-level programming language known for its readability and wide range of applications, from web development to data analysis." | ||
}, | ||
{ | ||
"question": "what is machine learning?", | ||
"answer": "Machine learning is a subset of AI that involves training algorithms to make predictions or decisions based on data." | ||
}, | ||
{ | ||
"question": "what is a framework?", | ||
"answer": "A framework is a set of tools and libraries that help developers build applications more efficiently by providing structure and common functionality." | ||
}, | ||
{ | ||
"question": "what is a library in programming?", | ||
"answer": "A library is a collection of pre-written code that developers can use to perform common tasks without having to write code from scratch." | ||
}, | ||
{ | ||
"question": "what is Git?", | ||
"answer": "Git is a version control system that allows developers to track changes in their code and collaborate with others." | ||
}, | ||
{ | ||
"question": "what is GitHub?", | ||
"answer": "GitHub is a platform that hosts Git repositories and provides tools for collaboration, code review, and project management." | ||
}, | ||
{ | ||
"question": "what is a database?", | ||
"answer": "A database is an organized collection of data that can be easily accessed, managed, and updated." | ||
}, | ||
{ | ||
"question": "what is SQL?", | ||
"answer": "SQL (Structured Query Language) is a programming language used to manage and manipulate relational databases." | ||
}, | ||
{ | ||
"question": "what is an API?", | ||
"answer": "An API (Application Programming Interface) is a set of rules and protocols that allows different software applications to communicate with each other." | ||
}, | ||
{ | ||
"question": "what is a front-end developer?", | ||
"answer": "A front-end developer is responsible for creating the visual and interactive aspects of a website or application using HTML, CSS, and JavaScript." | ||
}, | ||
{ | ||
"question": "what is a back-end developer?", | ||
"answer": "A back-end developer focuses on the server-side of an application, managing databases, server logic, and application integration." | ||
}, | ||
{ | ||
"question": "what is full-stack development?", | ||
"answer": "Full-stack development involves working on both the front-end and back-end aspects of an application." | ||
}, | ||
{ | ||
"question": "what is HTML?", | ||
"answer": "HTML (HyperText Markup Language) is the standard language used to create and structure content on the web." | ||
}, | ||
{ | ||
"question": "what is CSS?", | ||
"answer": "CSS (Cascading Style Sheets) is a language used to style and layout web pages, including the design, colors, and fonts." | ||
}, | ||
{ | ||
"question": "what is a programming language?", | ||
"answer": "A programming language is a formal language comprising a set of instructions that produce various kinds of output, used to create software and applications." | ||
}, | ||
{ | ||
"question": "what is an IDE?", | ||
"answer": "An IDE (Integrated Development Environment) is a software application that provides comprehensive facilities to programmers for software development, including code editor, debugger, and build tools." | ||
}, | ||
{ | ||
"question": "what is debugging?", | ||
"answer": "Debugging is the process of identifying, analyzing, and fixing bugs or errors in a software program." | ||
}, | ||
{ | ||
"question": "what is an algorithm?", | ||
"answer": "An algorithm is a step-by-step procedure or formula for solving a problem or performing a task." | ||
}, | ||
{ | ||
"question": "what is a function in programming?", | ||
"answer": "A function is a block of code designed to perform a particular task, which can be called upon and executed when needed." | ||
}, | ||
{ | ||
"question": "what is open-source software?", | ||
"answer": "Open-source software is software with source code that anyone can inspect, modify, and enhance." | ||
}, | ||
{ | ||
"question": "what is cloud computing?", | ||
"answer": "Cloud computing is the delivery of computing services over the internet, including storage, processing power, and software." | ||
}, | ||
{ | ||
"question": "what is IoT?", | ||
"answer": "IoT (Internet of Things) refers to the network of physical objects embedded with sensors, software, and other technologies to connect and exchange data with other devices and systems over the internet." | ||
}, | ||
{ | ||
"question": "what is cybersecurity?", | ||
"answer": "Cybersecurity is the practice of protecting systems, networks, and programs from digital attacks." | ||
}, | ||
{ | ||
"question": "what is blockchain?", | ||
"answer": "Blockchain is a distributed ledger technology that ensures data integrity and security through cryptographic hashing and decentralized storage." | ||
}, | ||
{ | ||
"question": "what is a startup?", | ||
"answer": "A startup is a young company founded to develop a unique product or service and bring it to market." | ||
}, | ||
{ | ||
"question": "what is agile development?", | ||
"answer": "Agile development is a software development methodology that promotes continuous iteration of development and testing throughout the software lifecycle." | ||
}, | ||
{ | ||
"question": "what is DevOps?", | ||
"answer": "DevOps is a set of practices that combines software development (Dev) and IT operations (Ops) to shorten the development lifecycle and deliver high-quality software continuously." | ||
}, | ||
{ | ||
"question": "what is big data?", | ||
"answer": "Big data refers to large and complex datasets that are difficult to process using traditional data processing techniques." | ||
}, | ||
{ | ||
"question": "what is data science?", | ||
"answer": "Data science is an interdisciplinary field that uses scientific methods, processes, algorithms, and systems to extract knowledge and insights from data." | ||
}, | ||
{ | ||
"question": "what is artificial intelligence?", | ||
"answer": "Artificial intelligence (AI) is the simulation of human intelligence processes by machines, especially computer systems." | ||
}, | ||
{ | ||
"question": "what is deep learning?", | ||
"answer": "Deep learning is a subset of machine learning that uses neural networks with many layers to analyze various types of data." | ||
}, | ||
{ | ||
"question": "what is a neural network?", | ||
"answer": "A neural network is a series of algorithms that attempts to recognize underlying relationships in a set of data through a process that mimics the way the human brain operates." | ||
}, | ||
{ | ||
"question": "what is natural language processing?", | ||
"answer": "Natural language processing (NLP) is a field of AI that gives machines the ability to read, understand, and derive meaning from human languages." | ||
}, | ||
{ | ||
"question": "what is a chatbot?", | ||
"answer": "A chatbot is an AI-based software application that simulates human conversation through voice commands or text chats." | ||
}, | ||
{ | ||
"question": "what is fintech?", | ||
"answer": "Fintech, or financial technology, refers to new tech that seeks to improve and automate the delivery and use of financial services." | ||
}, | ||
{ | ||
"question": "what is a hackathon?", | ||
"answer": "A hackathon is an event where programmers and others involved in software development collaborate intensively on projects over a short period of time." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
{"health":100,"inventory":["Mystic Key"],"location":"start","name":"Tach"} | ||
{ | ||
"health": 100, | ||
"inventory": ["Mystic Key"], | ||
"location": "start", | ||
"name": "Tach" | ||
} |
Oops, something went wrong.