瀏覽代碼

Changed Tesla url to Forbes Url (#615)

Co-authored-by: Subhadip <mnhacker2001@gmail.com>
Subhadip Mandal 1 年之前
父節點
當前提交
b1af82eba8
共有 2 個文件被更改,包括 6 次插入6 次删除
  1. 3 3
      README.md
  2. 3 3
      docs/quickstart.mdx

+ 3 - 3
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

+ 3 - 3
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.'
 ```