Difference between revisions of "Category:LLM"
Jump to navigation
Jump to search
m (Wf moved page Catgory:LLM to Category:LLM without leaving a redirect) |
|||
Line 1: | Line 1: | ||
Large Language Models | Large Language Models | ||
+ | == Conversational AI Details == | ||
+ | Fetch details of items related to Conversational AI including official websites and publication dates. | ||
+ | === query === | ||
+ | <source lang='sparql'> | ||
+ | # 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 | ||
+ | |||
+ | </source> | ||
+ | |||
+ | [https://query.wikidata.org/#%23%20Fetches%20items%20that%20are%20instances%20or%20subclasses%20of%20Conversational%20Artificial%20Intelligence%20%28Q116961403%29%0A%23%20along%20with%20a%20sample%20official%20website%20and%20publication%20date%20for%20each%20item.%0A%23%20Utilizes%20rdfs%3Alabel%20to%20directly%20fetch%20item%20labels%20in%20English.%0ASELECT%20%3Fitem%20%3FitemLabel%20%28SAMPLE%28%3Fwebsite%29%20AS%20%3FofficialWebsite%29%20%3FpublicationDate%0AWHERE%20%7B%0A%20%20%3Fitem%20wdt%3AP31/wdt%3AP279%2A%20wd%3AQ116961403%3B%0A%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20OPTIONAL%20%7B%20%3Fitem%20wdt%3AP856%20%3Fwebsite.%20%7D%20%23%20P856%20for%20official%20website%0A%20%20OPTIONAL%20%7B%20%3Fitem%20wdt%3AP577%20%3FpublicationDate.%20%7D%20%23%20P577%20for%20publication%20date%0A%20%20%0A%20%20FILTER%28LANG%28%3FitemLabel%29%20%3D%20%22en%22%29%20%23%20Ensures%20the%20label%20is%20in%20English%0A%7D%0AGROUP%20BY%20%3Fitem%20%3FitemLabel%20%3FpublicationDate%0A try it!] | ||
+ | === result === | ||
+ | {| class="wikitable" style="text-align: left;" | ||
+ | |+ <!-- caption --> | ||
+ | |- | ||
+ | ! 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 || | ||
+ | |} |
Revision as of 14:06, 10 July 2024
Large Language Models
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
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 |
Pages in category "LLM"
The following 19 pages are in this category, out of 19 total.