You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libs/oci/README.md
+16-3Lines changed: 16 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,8 @@ All integrations in this package assume that you have the credentials setup to c
11
11
12
12
## Chat Models
13
13
14
+
### OCI Generative AI
15
+
14
16
`ChatOCIGenAI` class exposes chat models from OCI Generative AI.
15
17
16
18
```python
@@ -20,7 +22,9 @@ llm = ChatOCIGenAI()
20
22
llm.invoke("Sing a ballad of LangChain.")
21
23
```
22
24
23
-
You may also instantiate the model with the generic `ChatOCIModelDeployment` or framework specific class like `ChatOCIModelDeploymentVLLM`.
25
+
### OCI Data Science
26
+
27
+
You may also instantiate the OCI Data Science model with the generic `ChatOCIModelDeployment` or framework specific class like `ChatOCIModelDeploymentVLLM`.
24
28
25
29
```python
26
30
from langchain_oci.chat_models import ChatOCIModelDeployment, ChatOCIModelDeploymentVLLM
@@ -58,6 +62,8 @@ chat_vllm.invoke(messages)
58
62
59
63
## Embeddings
60
64
65
+
### OCI Generative AI
66
+
61
67
`OCIGenAIEmbeddings` class exposes embeddings from OCI Generative AI.
0 commit comments