mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-15 03:57:19 +00:00
- Update Meta Llama 3 cookbook link - Add prereq section and information on `messages_modifier` to LangGraph migration guide - Update `PydanticToolsParser` explanation and entrypoint in tool calling guide - Add more obvious warning to `OllamaFunctions` - Fix Wikidata tool install flow - Update Bedrock LLM initialization @baskaryan can you add a bit of information on how to authenticate into the `ChatBedrock` and `BedrockLLM` models? I wasn't able to figure it out :(
119 lines
4.0 KiB
Plaintext
119 lines
4.0 KiB
Plaintext
{
|
||
"cells": [
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "c4b39799",
|
||
"metadata": {},
|
||
"source": [
|
||
"# Wikidata\n",
|
||
"\n",
|
||
">[Wikidata](https://wikidata.org/) is a free and open knowledge base that can be read and edited by both humans and machines. Wikidata is one of the world's largest open knowledge bases.\n",
|
||
"\n",
|
||
"First, you need to install `wikibase-rest-api-client` and `mediawikiapi` python packages."
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"id": "3d9195d4",
|
||
"metadata": {
|
||
"vscode": {
|
||
"languageId": "shellscript"
|
||
}
|
||
},
|
||
"outputs": [],
|
||
"source": [
|
||
"%pip install --upgrade --quiet \"wikibase-rest-api-client<0.2\" mediawikiapi"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 2,
|
||
"id": "955988a1-ebc2-4c9a-9298-c493fe842de1",
|
||
"metadata": {
|
||
"execution": {
|
||
"iopub.execute_input": "2024-03-06T22:55:15.973160Z",
|
||
"iopub.status.busy": "2024-03-06T22:55:15.972606Z",
|
||
"iopub.status.idle": "2024-03-06T22:55:15.980336Z",
|
||
"shell.execute_reply": "2024-03-06T22:55:15.979687Z",
|
||
"shell.execute_reply.started": "2024-03-06T22:55:15.973114Z"
|
||
}
|
||
},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Result Q7251:\n",
|
||
"Label: Alan Turing\n",
|
||
"Description: English computer scientist (1912–1954)\n",
|
||
"Aliases: Alan M. Turing, Alan Mathieson Turing, Turing, Alan Mathison Turing\n",
|
||
"instance of: human\n",
|
||
"country of citizenship: United Kingdom\n",
|
||
"occupation: computer scientist, mathematician, university teacher, cryptographer, logician, statistician, marathon runner, artificial intelligence researcher\n",
|
||
"sex or gender: male\n",
|
||
"date of birth: 1912-06-23\n",
|
||
"date of death: 1954-06-07\n",
|
||
"sport: athletics\n",
|
||
"place of birth: Maida Vale, Warrington Lodge\n",
|
||
"educated at: King's College, Princeton University, Sherborne School, Hazlehurst Community Primary School\n",
|
||
"employer: Victoria University of Manchester, Government Communications Headquarters, University of Cambridge, National Physical Laboratory (United Kingdom)\n",
|
||
"place of death: Wilmslow\n",
|
||
"field of work: cryptanalysis, computer science, mathematics, logic, cryptography\n",
|
||
"cause of death: cyanide poisoning\n",
|
||
"notable work: On Computable Numbers, with an Application to the Entscheidungsproblem, Computing Machinery and Intelligence, Intelligent Machinery, halting problem, Turing machine, Turing test, Turing completeness, Church-Turing thesis, universal Turing machine, Symmetric Turing machine, non-deterministic Turing machine, Bombe, probabilistic Turing machine, Turing degree\n",
|
||
"religion or worldview: atheism\n",
|
||
"mother: Ethel Sara Stoney\n",
|
||
"father: Julius Mathison Turing\n",
|
||
"doctoral student: Robin Gandy, Beatrice Helen Worsley\n",
|
||
"student: Robin Gandy\n",
|
||
"\n",
|
||
"Result Q28846012:\n",
|
||
"Label: Alan Turing\n",
|
||
"Description: fictional analogon of Alan Turing (1912-1954)\n",
|
||
"Aliases: Alan Mathison Turing\n",
|
||
"instance of: fictional human\n",
|
||
"sex or gender: male\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"from langchain_community.tools.wikidata.tool import WikidataAPIWrapper, WikidataQueryRun\n",
|
||
"\n",
|
||
"wikidata = WikidataQueryRun(api_wrapper=WikidataAPIWrapper())\n",
|
||
"\n",
|
||
"print(wikidata.run(\"Alan Turing\"))"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"id": "7188d62f",
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": []
|
||
}
|
||
],
|
||
"metadata": {
|
||
"kernelspec": {
|
||
"display_name": "Python 3 (ipykernel)",
|
||
"language": "python",
|
||
"name": "python3"
|
||
},
|
||
"language_info": {
|
||
"codemirror_mode": {
|
||
"name": "ipython",
|
||
"version": 3
|
||
},
|
||
"file_extension": ".py",
|
||
"mimetype": "text/x-python",
|
||
"name": "python",
|
||
"nbconvert_exporter": "python",
|
||
"pygments_lexer": "ipython3",
|
||
"version": "3.10.5"
|
||
}
|
||
},
|
||
"nbformat": 4,
|
||
"nbformat_minor": 5
|
||
}
|