agent-system/orchestrator/redis_client.py

9 lines
162 B
Python
Raw Permalink Normal View History

2026-04-30 21:15:28 +02:00
import os
import redis
def get_redis_client():
host = os.getenv("REDIS_HOST", "redis")
return redis.Redis(host=host, port=6379, decode_responses=True)