Skip to content

Commit 43a4b68

Browse files
authored
Update AutoGen docs (#1155)
2 parents 5b319c8 + 8b27628 commit 43a4b68

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/source/user_guide/large_language_model/autogen_integration.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following code shows how you can import the custom client and register it wi
2222

2323
.. code-block:: python3
2424
25-
from ads.llm.autogen.client_v02 import LangChainModelClient, register_custom_client
25+
from ads.llm.autogen.v02 import LangChainModelClient, register_custom_client
2626
2727
# Register the custom LLM globally
2828
register_custom_client(LangChainModelClient)
@@ -104,6 +104,8 @@ Following is an example LLM config for the OCI Generative AI service:
104104
},
105105
}
106106
107+
You can find an example notebook showing function calling with AutoGen `here <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/LLM/AutoGen/AutoGenFunctionCalling.ipynb>`_.
108+
107109
Logging And Reporting
108110
=====================
109111

@@ -141,7 +143,7 @@ If you are using an object storage location as ``report_dir``, you can also have
141143
with session_logger:
142144
# Create and run your AutoGen application
143145
...
144-
146+
145147
# Access the log file path
146148
print(session_logger.log_file)
147149

0 commit comments

Comments
 (0)