Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
doc: advice for reusable session
Browse files Browse the repository at this point in the history
  • Loading branch information
dsdanielpark authored Jan 11, 2024
1 parent 817681f commit 5b9dfcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5b9dfcf

Please sign in to comment.