This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
How do you control context #747
Unanswered
Liu-Angelo
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Context of? If you mean conversations, check https://github.com/acheong08/ChatGPT/wiki/V1 for reference |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
revChatGPT.V1 import Chatbot
conversation_id=chatbot.config.get("conversation"),
parent_id=chatbot.config.get("parent_id"),
example:
from revChatGPT.V1 import Chatbot
chatbot = Chatbot(config={
"email": "",
"password": "your password"
})
for data in chatbot.ask(
prompt,
conversation_id=chatbot.config.get("conversation"),
parent_id=chatbot.config.get("parent_id"),
):
print(data["message"], end="", flush = True)
print()
Beta Was this translation helpful? Give feedback.
All reactions