Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic collaborative chat #58

Merged
merged 6 commits into from
Apr 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove old messages property
  • Loading branch information
dlqqq committed Apr 13, 2023
commit 4ed22e0451a42d19af2fbca70e03ca9041b2b20b
5 changes: 0 additions & 5 deletions packages/jupyter-ai/jupyter_ai/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,6 @@ def chat_client(self) -> ChatClient:
def chat_history(self) -> List[ChatMessage]:
return self.settings["chat_history"]

@property
def messages(self):
self._messages = self.chat_provider.memory.chat_memory.messages or []
return self._messages

def initialize(self):
self.log.debug("Initializing websocket connection %s", self.request.path)

Expand Down