🔧 chore(manager.py): import orjson library for improved JSON serialization and deserialization performance

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-08-22 16:12:42 -03:00
commit 6fa2258aac

View file

@ -12,6 +12,7 @@ import asyncio
from typing import Any, Dict, List
from langflow.cache.flow import InMemoryCache
import orjson
class ChatHistory(Subject):