marona 0.12.1
marona: ^0.12.1 copied to clipboard
Provider-neutral AI agent runtime and MCP/Skill gateway for Marona Hub connections, managed agents, and bring-your-own-agent integrations.
example/main.dart
import 'package:marona/marona.dart';
Future<void> main() async {
final marona = Marona();
try {
final tools = await marona.hub.connect(apps: ['sda-books']);
final agent = Agent(
name: 'Customer Assistant',
model: 'marona/gpt-5.6',
instructions: 'Help the customer.',
tools: tools,
);
final result = await Runner.run(
agent,
'Download Steps to Christ',
userId: 'customer_482',
sessionId: 'chat_91a7',
);
print(result.output);
} finally {
marona.close();
}
}