Get the list of all tags (from agents and blocks) that have been created.
List Tags
import os
from letta_client import Letta
client = Letta(
api_key=os.environ.get("LETTA_API_KEY"), # This is the default and can be omitted
)
tags = client.tags.list()
print(tags)[
"string"
]Returns Examples
[
"string"
]