From 5b9dfcf5f7663df58f500486f76e5afbd6674d6a Mon Sep 17 00:00:00 2001 From: "MinWoo(Daniel) Park" Date: Thu, 11 Jan 2024 17:10:15 +0900 Subject: [PATCH] doc: advice for reusable session --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b6b938a4..171de30b5 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ bard.get_answer("나와 내 동년배들이 좋아하는 뉴진스에 대해서 To make the async bard code collapsible in Markdown, you can use HTML details and summary tags. This allows the code to be hidden under a summary title, which can be clicked to expand and view the full code block. Here's how you can modify your Markdown content: ### Reusable session object -You can continue the conversation using a reusable session. +You can continue the conversation using a reusable session. However, this feature is limited, and it is difficult for a package-level feature to perfectly maintain conversation_id and context. You can try to maintain the consistency of conversations by using other LLM services, such as passing some sort of summary of past conversations to the DB. ```python from bardapi import Bard import requests