mirror of
https://github.com/langgenius/dify.git
synced 2025-11-09 07:53:55 +00:00
12 lines
203 B
Python
12 lines
203 B
Python
from typing import Any
|
|
|
|
import orjson
|
|
|
|
|
|
def orjson_dumps(
|
|
obj: Any,
|
|
encoding: str = "utf-8",
|
|
option: int | None = None,
|
|
) -> str:
|
|
return orjson.dumps(obj, option=option).decode(encoding)
|