Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
28 changes: 28 additions & 0 deletions docs/api/message_history.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
*******************
LLM Message History
*******************

SemanticMessageHistory
======================

.. _semantic_message_history_api:

.. currentmodule:: redisvl.extensions.message_history.semantic_history

.. autoclass:: SemanticMessageHistory
:show-inheritance:
:members:
:inherited-members:


MessageHistory
==============

.. _message_history_api:

.. currentmodule:: redisvl.extensions.message_history.message_history

.. autoclass:: MessageHistory
:show-inheritance:
:members:
:inherited-members:
28 changes: 0 additions & 28 deletions docs/api/session_manager.rst

This file was deleted.

212 changes: 106 additions & 106 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "redisvl"
version = "0.5.2"
version = "0.6.0"
description = "Python client library and CLI for using Redis as a vector database"
authors = ["Redis Inc. <applied.ai@redis.com>"]
license = "MIT"
Expand Down
2 changes: 0 additions & 2 deletions redisvl/cli/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ def _connect_to_index(self, args: Namespace) -> SearchIndex:


def _display_in_table(index_info, output_format="rounded_outline"):
tabulate = lazy_import("tabulate")

print("\n")
attributes = index_info.get("attributes", [])
definition = make_dict(index_info.get("index_definition"))
Expand Down
2 changes: 0 additions & 2 deletions redisvl/cli/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ def _connect_to_index(self, args: Namespace) -> SearchIndex:


def _display_stats(index_info, output_format="rounded_outline"):
tabulate = lazy_import("tabulate")

# Extracting the statistics
stats_data = [(key, str(index_info.get(key))) for key in STATS_KEYS]

Expand Down
2 changes: 1 addition & 1 deletion redisvl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.2"
__version__ = "0.6.0"