Skip to content

Commit

Permalink
docs nits
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis committed Dec 6, 2023
1 parent 45a39ed commit 119b49d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip3 install oracle_ads"
"!pip3 install oracle-ads"
]
},
{
Expand Down Expand Up @@ -72,7 +72,7 @@
"llm = OCIModelDeploymentVLLM(endpoint=\"https://<MD_OCID>/predict\", model=\"model_name\")\n",
"\n",
"# Run the LLM\n",
"llm(\"Who is the first president of United States?\")"
"llm.invoke(\"Who is the first president of United States?\")"
]
},
{
Expand Down Expand Up @@ -101,7 +101,7 @@
"llm = OCIModelDeploymentTGI()\n",
"\n",
"# Run the LLM\n",
"llm(\"Who is the first president of United States?\")"
"llm.invoke(\"Who is the first president of United States?\")"
]
}
],
Expand All @@ -121,7 +121,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.18"
"version": "3.11.4"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 119b49d

Please sign in to comment.