Skip to content

Commit 6977dfd

Browse files
feat: remove deprecation warning (#3560)
Co-authored-by: Sarah Wooders <[email protected]>
1 parent 7594e39 commit 6977dfd

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

letta/client/client.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import sys
21
import time
32
from typing import Callable, Dict, List, Optional, Union
43

@@ -33,16 +32,6 @@
3332
from letta.schemas.tool_rule import BaseToolRule
3433
from letta.utils import get_human_text, get_persona_text
3534

36-
# Print deprecation notice in yellow when module is imported
37-
print(
38-
"\n\n\033[93m"
39-
+ "DEPRECATION WARNING: This legacy Python client has been deprecated and will be removed in a future release.\n"
40-
+ "Please migrate to the new official python SDK by running: pip install letta-client\n"
41-
+ "For further documentation, visit: https://docs.letta.com/api-reference/overview#python-sdk"
42-
+ "\033[0m\n\n",
43-
file=sys.stderr,
44-
)
45-
4635

4736
class AbstractClient(object):
4837
def __init__(

0 commit comments

Comments
 (0)