Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Once initialized, tmam will auto-instrument supported components and begin sending traces and metrics to TMAM’s backend.
4 changes: 2 additions & 2 deletions src/tmam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def init(
"crewai": "crewai",
"ag2": "ag2",
"autogen": "autogen",
"pyautogen": "pyautogen",
"ag2": "ag2",
"multion": "multion",
"dynamiq": "dynamiq",
"phidata": "phi",
Expand Down Expand Up @@ -416,7 +416,7 @@ def init(
"ag2": AG2Instrumentor(),
"multion": MultiOnInstrumentor(),
"autogen": AG2Instrumentor(),
"pyautogen": AG2Instrumentor(),
"ag2": AG2Instrumentor(),
"dynamiq": DynamiqInstrumentor(),
"phidata": PhidataInstrumentor(),
"reka-api": RekaInstrumentor(),
Expand Down