Difference between revisions of "Conversational AI"

From BITPlan cr Wiki
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 8: Line 8:
 
SELECT ?item ?itemLabel (SAMPLE(?website) AS ?officialWebsite) ?publicationDate
 
SELECT ?item ?itemLabel (SAMPLE(?website) AS ?officialWebsite) ?publicationDate
 
WHERE {
 
WHERE {
   ?item wdt:P31*/wdt:P279* wd:Q116961403;
+
   ?item wdt:P31/wdt:P279* wd:Q116961403;
 
         rdfs:label ?itemLabel.
 
         rdfs:label ?itemLabel.
 
   OPTIONAL { ?item wdt:P856 ?website. } # P856 for official website
 
   OPTIONAL { ?item wdt:P856 ?website. } # P856 for official website
Line 42: Line 42:
 
|}
 
|}
  
[[Category:LLM]]
+
[[CiteRef::openai2022chatgpt]]
 +
[[CiteRef::anthropic2023claude]]
 +
[[CiteRef::google2023gemini]]
 +
[[CiteRef::microsoft2023copilot]]
 +
 
 +
{{#scite:
 +
|reference=openai2022chatgpt
 +
|type=web-page
 +
|title=Introducing ChatGPT
 +
|authors=OpenAI
 +
|publisher=OpenAI
 +
|year=2022
 +
|url=https://openai.com/blog/chatgpt
 +
|retrieved-on=2024-07-09
 +
}}
 +
 
 +
{{#scite:
 +
|reference=anthropic2023claude
 +
|type=web-page
 +
|title=Introducing Claude
 +
|authors=Anthropic
 +
|publisher=Anthropic
 +
|year=2023
 +
|url=https://www.anthropic.com/index/introducing-claude
 +
|retrieved-on=2024-07-09
 +
}}
 +
 
 +
{{#scite:
 +
|reference=google2023gemini
 +
|type=web-page
 +
|title=Introducing Gemini: Our largest and most capable AI model
 +
|authors=Google
 +
|publisher=Google AI Blog
 +
|year=2023
 +
|url=https://blog.google/technology/ai/google-gemini-ai/
 +
|retrieved-on=2024-07-09
 +
}}
 +
 
 +
{{#scite:
 +
|reference=microsoft2023copilot
 +
|type=web-page
 +
|title=Introducing Microsoft 365 Copilot – your copilot for work
 +
|authors=Microsoft
 +
|publisher=Microsoft
 +
|year=2023
 +
|url=https://blogs.microsoft.com/blog/2023/03/16/introducing-microsoft-365-copilot-your-copilot-for-work/
 +
|retrieved-on=2024-07-09
 +
}}
 +
{{LLMHint}}
 +
 
 +
[[Category:snapquery]]

Latest revision as of 15:01, 12 July 2024

Conversational AI Details

Fetch details of items related to Conversational AI including official websites and publication dates.

query

# Fetches items that are instances or subclasses of Conversational Artificial Intelligence (Q116961403)
# along with a sample official website and publication date for each item.
# Utilizes rdfs:label to directly fetch item labels in English.
SELECT ?item ?itemLabel (SAMPLE(?website) AS ?officialWebsite) ?publicationDate
WHERE {
  ?item wdt:P31/wdt:P279* wd:Q116961403;
        rdfs:label ?itemLabel.
  OPTIONAL { ?item wdt:P856 ?website. } # P856 for official website
  OPTIONAL { ?item wdt:P577 ?publicationDate. } # P577 for publication date
  
  FILTER(LANG(?itemLabel) = "en") # Ensures the label is in English
}
GROUP BY ?item ?itemLabel ?publicationDate

try it!

result

item itemLabel officialWebsite publicationDate
http://www.wikidata.org/entity/Q117861376 FinanceGPT https://financegpt.uk 2023-04-29 00:00:00
http://www.wikidata.org/entity/Q118176939 Open Assistant https://open-assistant.io
http://www.wikidata.org/entity/Q118876059 Claude https://claude.ai 2023-03-14 00:00:00
http://www.wikidata.org/entity/Q124957608 Le Chat Mistral https://chat.mistral.ai/
http://www.wikidata.org/entity/Q116698014 Gemini https://gemini.google.com/app 2023-02-06 00:00:00
http://www.wikidata.org/entity/Q116793893 Microsoft Copilot https://copilot.microsoft.com 2023-02-07 00:00:00
http://www.wikidata.org/entity/Q116894099 ERNIE Bot https://yiyan.baidu.com

1 2 3 4




⚠️ LLM-generated content notice: Parts of this page may have been created or edited with the assistance of a large language model (LLM). The prompts that have been used might be on the page itself, the discussion page or in straight forward cases the prompt was just "Write a mediawiki page on X" with X being the page name. While the content has been reviewed it might still not be accurate or error-free.

References

  1. ^  OpenAI. (2022) "Introducing ChatGPT" . url: https://openai.com/blog/chatgpt
  2. ^  Anthropic. (2023) "Introducing Claude" . url: https://www.anthropic.com/index/introducing-claude
  3. ^  Google. (2023) "Introducing Gemini: Our largest and most capable AI model" . url: https://blog.google/technology/ai/google-gemini-ai/
  4. ^  Microsoft. (2023) "Introducing Microsoft 365 Copilot – your copilot for work" . url: https://blogs.microsoft.com/blog/2023/03/16/introducing-microsoft-365-copilot-your-copilot-for-work/