-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathagent_management_tab.py
42 lines (34 loc) · 1016 Bytes
/
agent_management_tab.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from flask import Flask, request, jsonify
from flask_cors import CORS
import json
app = Flask(__name__)
CORS(app)
# Shared Variables
agentConfig = {}
# Shared Schemas
AgentConfigSchema = {
"type": "object",
"properties": {
"agentName": {"type": "string"},
"status": {"type": "string"},
"configDetails": {"type": "object"}
},
"required": ["agentName", "status"]
}
@app.route('/agent_management', methods=['GET'])
def get_agent_config():
return jsonify(agentConfig)
@app.route('/agent_management', methods=['POST'])
def update_agent_config():
data = request.get_json()
agentName = data['agentName']
status = data['status']
configDetails = data.get('configDetails', {})
# Update the agent configuration
agentConfig[agentName] = {
"status": status,
"configDetails": configDetails
}
return jsonify({"message": "Agent configuration updated successfully"}), 200
if __name__ == '__main__':
app.run(port=5000, debug=True)