diff --git a/README.md b/README.md index 935c2d53..b5b2fac7 100644 --- a/README.md +++ b/README.md @@ -61,12 +61,12 @@ elon_bot = App() # Embed online resources elon_bot.add("https://en.wikipedia.org/wiki/Elon_Musk") -elon_bot.add("https://tesla.com/elon-musk") +elon_bot.add("https://www.forbes.com/profile/elon-musk") elon_bot.add("https://www.youtube.com/watch?v=MxZpaJK74Y4") # Query the bot -elon_bot.query("How many companies does Elon Musk run?") -# Answer: Elon Musk runs four companies: Tesla, SpaceX, Neuralink, and The Boring Company +elon_bot.query("How many companies does Elon Musk run and name those?") +# Answer: Elon Musk currently runs several companies. As of my knowledge, he is the CEO and lead designer of SpaceX, the CEO and product architect of Tesla, Inc., the CEO and founder of Neuralink, and the CEO and founder of The Boring Company. However, please note that this information may change over time, so it's always good to verify the latest updates. ``` ## 🤝 Contributing diff --git a/docs/quickstart.mdx b/docs/quickstart.mdx index 55d4f5a0..48ca3bd3 100644 --- a/docs/quickstart.mdx +++ b/docs/quickstart.mdx @@ -27,9 +27,9 @@ elon_musk_bot = App() # Embed Online Resources elon_musk_bot.add("https://en.wikipedia.org/wiki/Elon_Musk") -elon_musk_bot.add("https://www.tesla.com/elon-musk") +elon_musk_bot.add("https://www.forbes.com/profile/elon-musk") -response = elon_musk_bot.query("How many companies does Elon Musk run?") +response = elon_musk_bot.query("How many companies does Elon Musk run and name those?") print(response) -# Answer: 'Elon Musk runs four companies: Tesla, SpaceX, Neuralink, and The Boring Company.' +# Answer: 'Elon Musk currently runs several companies. As of my knowledge, he is the CEO and lead designer of SpaceX, the CEO and product architect of Tesla, Inc., the CEO and founder of Neuralink, and the CEO and founder of The Boring Company. However, please note that this information may change over time, so it's always good to verify the latest updates.' ```