diff --git a/README.md b/README.md index 31e3c33..1dbf6a0 100644 --- a/README.md +++ b/README.md @@ -33,10 +33,10 @@ import tmam tmam.init( url="http://api.tmam.ai/api/sdk/v1", public_key="pk-tmam-0edeba2a-f6f3-4efd-982c-412adbb03046", - secrect_key="sk-tmam-b320dda9-e36d-4eac-8ac5-4793fd38e002", + secret_key="sk-tmam-b320dda9-e36d-4eac-8ac5-4793fd38e002", ) # Your LLM or agent code here from openai import OpenAI # ... -Once initialized, tmam will auto-instrument supported components and begin sending traces and metrics to TMAM’s backend. \ No newline at end of file +Once initialized, tmam will auto-instrument supported components and begin sending traces and metrics to TMAM’s backend. diff --git a/src/tmam/__init__.py b/src/tmam/__init__.py index 915235b..2b9a040 100644 --- a/src/tmam/__init__.py +++ b/src/tmam/__init__.py @@ -271,7 +271,7 @@ def init( "crewai": "crewai", "ag2": "ag2", "autogen": "autogen", - "pyautogen": "pyautogen", + "ag2": "ag2", "multion": "multion", "dynamiq": "dynamiq", "phidata": "phi", @@ -416,7 +416,7 @@ def init( "ag2": AG2Instrumentor(), "multion": MultiOnInstrumentor(), "autogen": AG2Instrumentor(), - "pyautogen": AG2Instrumentor(), + "ag2": AG2Instrumentor(), "dynamiq": DynamiqInstrumentor(), "phidata": PhidataInstrumentor(), "reka-api": RekaInstrumentor(),