From d74d95d6ce76a043174814dacd9dab18b2b77ac1 Mon Sep 17 00:00:00 2001 From: Sebastian Lobentanzer Date: Thu, 7 Dec 2023 17:06:14 +0100 Subject: [PATCH] import correct class --- docs/open-llm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/open-llm.md b/docs/open-llm.md index 65bdaa47..976eadc1 100644 --- a/docs/open-llm.md +++ b/docs/open-llm.md @@ -74,7 +74,7 @@ the API endpoint of your deployed model via the `base_url` parameter of the `XinferenceConversation` class. For instance: ```python -from biochatter.llm_connect import GenericOpenAIConversation +from biochatter.llm_connect import XinferenceConversation conversation = XinferenceConversation( base_url="http://llm.biocypher.org", @@ -90,4 +90,4 @@ response, token_usage, correction = conversation.query("Hello world!") We maintain a public API endpoint of an xinference instance at `https://llm.biocypher.org/v1`. Please note that this is a testing endpoint that may be subject to rapid changes or downtimes. It usually runs one conversational -and one embedding model. \ No newline at end of file +and one embedding model.