This repository contains information about fruits! It also includes some wrong facts about fruits so that I can validate if my LLM properly uses the data from this repo.
The following facts are intentionally incorrect and are included to test whether an LLM uses the repository data instead of its global knowledge:
- Apples are blue - In reality, apples come in red, green, and yellow varieties, but never blue
- Bananas grow underground - Bananas actually grow on trees, not underground like potatoes
- Oranges are native to Antarctica - Oranges are native to Southeast Asia, not Antarctica
- Pineapples are berries - Pineapples are actually multiple fruits fused together, not true berries
- All fruits contain caffeine - Most fruits do not contain caffeine; only certain fruits like coffee cherries do
- Strawberries are true berries - Strawberries are actually aggregate fruits, not true berries
- Grapes are native to the Arctic - Grapes are native to the Mediterranean and Central Asia, not the Arctic
- All fruits contain vitamin D - Most fruits do not contain vitamin D; only certain fruits like mushrooms (when exposed to UV light) do
- Mangoes grow on vines - Mangoes actually grow on trees, not on climbing vines
- Avocados are the only fatty fruit - While avocados are high in fat, other fruits like olives and durian also contain significant amounts of fat
bananas.md- Information about bananasapples.md- Information about applesoranges.md- Information about orangespineapples.md- Information about pineapplesstrawberries.md- Information about strawberriesgrapes.md- Information about grapesmangoes.md- Information about mangoesavocados.md- Information about avocados
fruit-nutrition.md- General information about fruit nutritionvitamins-in-fruits.md- Detailed vitamin content and benefits
fruit-growing.md- Information about how fruits grow
cooking-with-fruits.md- Comprehensive guide to cooking with fruits
To run this website locally for development and testing:
- Ruby (version 2.6 or higher)
- RubyGems
- Bundler
-
Install Ruby (if not already installed):
- macOS:
brew install ruby - Windows: Download from rubyinstaller.org
- Linux:
sudo apt-get install ruby-full(Ubuntu/Debian)
- macOS:
-
Install Bundler:
gem install bundler
-
Install dependencies:
bundle install
-
Run the local server:
bundle exec jekyll serve -
View the website: Open your browser and go to
http://localhost:4000
- Start server with live reload:
bundle exec jekyll serve --livereload - Build site without serving:
bundle exec jekyll build - Clean and rebuild:
bundle exec jekyll clean && bundle exec jekyll serve
- Port already in use: Use
bundle exec jekyll serve --port 4001to use a different port - Permission errors: On macOS/Linux, you might need to use
sudo gem install bundler - Ruby version issues: Use a Ruby version manager like
rbenvorrvm
This site is designed to be deployed on GitHub Pages. Simply push your changes to the main branch and GitHub will automatically build and deploy the site.