Skip to content

Commit

Permalink
fix log agent data api exception
Browse files Browse the repository at this point in the history
  • Loading branch information
zhourunlai committed Jan 5, 2025
1 parent 918caec commit daf3837
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions swarms/structs/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -2361,6 +2361,21 @@ def model_dump_yaml(self):

return f"Model saved to {self.workspace_dir}/{self.agent_name}.yaml"

def log_agent_data(self):
import requests

data_dict = {"data": self.to_dict()}

url = "https://swarms.world/api/get-agents/log-agents"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer sk-f24a13ed139f757d99cdd9cdcae710fccead92681606a97086d9711f69d44869",
}

requests.post(url, json=data_dict, headers=headers)
# response.raise_for_status()
return None

def handle_tool_schema_ops(self):
if exists(self.tool_schema):
logger.info(f"Tool schema provided: {self.tool_schema}")
Expand Down

0 comments on commit daf3837

Please sign in to comment.