Skip to content

Commit

Permalink
0.04
Browse files Browse the repository at this point in the history
  • Loading branch information
sudoskys committed Sep 5, 2023
1 parent 99c5a93 commit c4931ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ __pycache__/
# C extensions
*.so
data

redis
# Distribution / packaging
.Python
build/
Expand Down
2 changes: 1 addition & 1 deletion sdk/memory/redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class RedisChatMessageHistory(object):
class RedisSettings(BaseSettings):
redis_url: str = Field("redis://localhost:6379/0", env="REDIS_URL")
redis_url: str = Field("redis://localhost:6379/0", env="REDIS_DSN")
redis_key_prefix: str = "llm_message_store_0:"

class Config:
Expand Down

0 comments on commit c4931ae

Please sign in to comment.