We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a8bb9f commit 524b519Copy full SHA for 524b519
docs/source/user_guide/large_language_model/langchain_models.rst
@@ -96,13 +96,12 @@ Chat models takes `chat messages <https://python.langchain.com/docs/concepts/#me
96
97
llm = ChatOCIModelDeploymentVLLM(
98
model="odsc-llm",
99
- endpoint= f"https://modeldeployment.oci.customer-oci.com/<OCID>/predict",
+ endpoint=f"<oci_model_deployment_url>>/predict",
100
# Optionally you can specify additional keyword arguments for the model.
101
max_tokens=32,
102
)
103
104
messages = [
105
- SystemMessage(content="You're a helpful assistant providing concise answers."),
106
HumanMessage(content="Who's the first president of United States?"),
107
]
108
0 commit comments