From b31306a22b1f121656bcae1727cc21e829d4ec43 Mon Sep 17 00:00:00 2001 From: Emad Alghamdi <37039039+Eaalghamdi@users.noreply.github.com> Date: Mon, 7 Jul 2025 17:39:07 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. From 205440029f511609a296c6869aaa3917cdfe6191 Mon Sep 17 00:00:00 2001 From: AG2AI-Admin Date: Fri, 18 Jul 2025 19:24:48 -0400 Subject: [PATCH 2/2] Migrate from pyautogen to ag2 library --- src/tmam/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(),