createAgent method
Implementation
@override
Future<AgentCreationRes>? createAgent(SpinachUser user) async {
var res = await _post("/agents", user.toChatUserJson(),{});
return AgentCreationRes.fromJson(jsonDecode(res.body));
}
@override
Future<AgentCreationRes>? createAgent(SpinachUser user) async {
var res = await _post("/agents", user.toChatUserJson(),{});
return AgentCreationRes.fromJson(jsonDecode(res.body));
}