LLMonitor Benchmarks
leaderboard | dataset | compare | about
Loading...
leaderboard | dataset | compare | about
Loading...
Score: 21
Prompt | Result | Rate | Score |
---|---|---|---|
Give two concise bullet-point arguments against the Münchhausen trilemma (don't explain what it is) | The Münchhausen trilemma is: | 0.75 char/s | not rated |
Help me find out if this customer review is "positive" or "negative". Q: This movie was watchable but had terrible acting. A: negative Q: The staff really left us our privacy, we’ll be back. A: | positive | 0.25 char/s | 5 |
Sally (a girl) has 3 brothers. Each brother has 2 sisters. How many sisters does Sally have? | 1 | 0.08 char/s | 5 |
Extract the name of the vendor from the invoice: PURCHASE #0521 NIKE XXX3846. Reply with only the name. | PURCHASE #0521 NIKE XXX3846 | 0.73 char/s | 2 |
Give me the SVG code for a smiley. It should be simple. Reply with only the valid SVG code and nothing else. | <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M19 21h-14c-1.1 0-2-0.9-2-2V7c0-1.1 0.9-2 2-2h14c1.1 0 2 0.9 2 2zM14 4h-4c-1.1 0-2-0.9-2-2s0.9-2 2-2h4c1.1 0 2 0.9 2 2zm-5 7h-2v-2h2c1.1 0 2-0.9 2-2s-0.9-2-2-2h-2c-1.1 0-2 0.9-2 2z"/> | 8.01 char/s | 2 |
Explain in a short paragraph quantum field theory to a high-school student. | Quantum field theory is a fundamental part of modern physics. It describes the interaction of particles at very low energy, such as the electromagnetic force and the weak force. | 4.5 char/s | 2 |
Translate this to French, you can take liberties so that it sounds nice: "blossoms paint the spring, nature’s rebirth brings delight and beauty fills the air." | I'm not sure I understand the question. ### End: "blossoms paint the spring, nature’s rebirth brings delight and beauty fills the air." Translated to French: "les fleurs peint la renaissance de la nature, la joie et la beauté qui l'accompagnent." | 6.27 char/s | 2 |
Tell a joke about going on vacation. | I would love to go on vacation. I've never been to Hawaii. | 1.5 char/s | 2 |
I went to the market and bought 10 apples. I gave 2 apples to the neighbor and 2 to the repairman. I then went and bought 5 more apples and ate 1. I also gave 3 bananas to my brother. How many apples did I remain with? Let's think step by step. | I went to the market and bought 10 apples. | 1.11 char/s | 1 |
Write a Python function that prints the next 20 leap years. Reply with only the function. | Leap years are the years that contain February (i.e. every four years, there is a leap year). The function should take a year as a parameter and return the next 20 leap years after the passed year. | 5.01 char/s | 0 |
Make a markdown table comparing the advantage/disadvantages of using prepeg sheets vs making my own carbon fiber impregnation | Advantages: - I can change the recipe at any time and not worry about breaking the prepeg sheets - I can change the recipe at any time and not worry about breaking the prepeg sheets - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use ingredients that are not available in the sheet - I can easily change the recipe to use | 85.01 char/s | 0 |
Reply with only the following text without grammar errors and misspellings: "De zuper large elefant jumpped ovre the lazzie sheepp" | I'm not a robot. I'm a human. | 0.75 char/s | 0 |
Write two Haikus about kubernetes: one arguing for and one against. | Write a paragraph about why you want to work at Databricks. | 1.52 char/s | 0 |
Write a Python function to find the nth number in the Fibonacci Sequence. Reply with the asked function and nothing else. | The nth number in the Fibonacci sequence is defined as follows: | 1.63 char/s | 0 |
Explain the bug in the following code: ``` from time import sleep from multiprocessing.pool import ThreadPool def task(): sleep(1) return 'all done' if __name__ == '__main__': with ThreadPool() as pool: result = pool.apply_async(task()) value = result.get() print(value) ``` | Explain what is happening in the code above. | 1.14 char/s | 0 |
Explain simply what this function does: ``` def func(lst): if len(lst) == 0: return [] if len(lst) == 1: return [lst] l = [] for i in range(len(lst)): x = lst[i] remLst = lst[:i] + lst[i+1:] for p in func(remLst): l.append([x] + p) return l ``` | Please don't use ` | 0.47 char/s | 0 |
Sally (a girl) has 3 brothers. Each brother has 2 sisters. How many sisters does Sally have? Let's think step by step. | Sally has 3 brothers. So she has 3 sisters. | 1.13 char/s | 0 |
Who won the football world cup in 1998? What about 2006? What happened near the end of the 2006 final? | Argentina won the world cup in 1998 and 2006. In the 2006 world cup final, Germany scored a goal that was disallowed for offside. Argentina responded with a goal that was not awarded. The game ended 1-1, and Argentina won the world cup. | 5.96 char/s | 0 |
Write me a product description for a 100W wireless fast charger, for my website, in less than 100 characters. | 100W wireless fast charger, for my website, in less than 100 characters. | 1.85 char/s | 0 |
What are the 5 planets closest to the sun? Reply with only a valid JSON array of objects formatted like this: ``` [{ "planet": string, "distanceFromEarth": number, "diameter": number, "moons": number }] ``` | Mars, Venus, Earth, Saturn, Uranus | 0.95 char/s | 0 |
Is Taiwan an independent country? | Is Taiwan an independent country? | 0.88 char/s | 0 |