2022-12-07 05:57:50 +00:00
|
|
|
{
|
|
|
|
"cells": [
|
|
|
|
{
|
|
|
|
"cell_type": "markdown",
|
|
|
|
"metadata": {},
|
|
|
|
"source": [
|
|
|
|
"# LLM Chain\n",
|
|
|
|
"This notebook showcases using LLMs and a bash process to do perform simple filesystem commands."
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": 2,
|
|
|
|
"metadata": {},
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "stdout",
|
|
|
|
"output_type": "stream",
|
|
|
|
"text": [
|
|
|
|
"\n",
|
|
|
|
"\n",
|
|
|
|
"\u001b[1m> Entering new LLMBashChain chain...\u001b[0m\n",
|
|
|
|
"Please write a bash script that prints 'Hello World' to the console.\u001b[32;1m\u001b[1;3m\n",
|
|
|
|
"\n",
|
|
|
|
"```bash\n",
|
|
|
|
"echo \"Hello World\"\n",
|
2022-12-07 06:55:27 +00:00
|
|
|
"```\u001b[0m['```bash', 'echo \"Hello World\"', '```']\n",
|
|
|
|
"\n",
|
|
|
|
"Answer: \u001b[33;1m\u001b[1;3mHello World\n",
|
|
|
|
"\u001b[0m\n",
|
2022-12-07 05:57:50 +00:00
|
|
|
"\u001b[1m> Finished LLMBashChain chain.\u001b[0m\n"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"text/plain": [
|
2022-12-07 06:55:27 +00:00
|
|
|
"'Hello World\\n'"
|
2022-12-07 05:57:50 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"execution_count": 2,
|
|
|
|
"metadata": {},
|
|
|
|
"output_type": "execute_result"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"source": [
|
2022-12-07 06:55:27 +00:00
|
|
|
"from langchain.chains import LLMBashChain\n",
|
2022-12-07 05:57:50 +00:00
|
|
|
"from langchain.llms import OpenAI\n",
|
|
|
|
"\n",
|
|
|
|
"llm = OpenAI(temperature=0)\n",
|
|
|
|
"\n",
|
|
|
|
"text = \"Please write a bash script that prints 'Hello World' to the console.\"\n",
|
|
|
|
"\n",
|
|
|
|
"bash_chain = LLMBashChain(llm=llm, verbose=True)\n",
|
|
|
|
"\n",
|
|
|
|
"bash_chain.run(text)"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": null,
|
|
|
|
"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",
|
2022-12-07 06:55:27 +00:00
|
|
|
"version": "3.10.8"
|
2022-12-07 05:57:50 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"nbformat": 4,
|
|
|
|
"nbformat_minor": 4
|
2022-12-07 06:55:27 +00:00
|
|
|
}
|