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
2 changes: 1 addition & 1 deletion src/langchain_google_datastore/chat_message_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

from .version import __version__

USER_AGENT = "langchain-google-datastore-python:chat_history" + __version__
USER_AGENT = "langchain-google-datastore-python:chat_history/" + __version__
DEFAULT_KIND = "ChatHistory"

if TYPE_CHECKING:
Expand Down
4 changes: 2 additions & 2 deletions src/langchain_google_datastore/document_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
)
from .version import __version__

USER_AGENT_LOADER = "langchain-google-datastore-python:document_loader" + __version__
USER_AGENT_SAVER = "langchain-google-datastore-python:document_saver" + __version__
USER_AGENT_LOADER = "langchain-google-datastore-python:document_loader/" + __version__
USER_AGENT_SAVER = "langchain-google-datastore-python:document_saver/" + __version__
WRITE_BATCH_SIZE = 500

if TYPE_CHECKING:
Expand Down