← Back to registry /

Salem Convention Center – Events

A2A conformant Streaming A2A v0.3.0

Salem Convention Center – Events

v1.0.0 inHotel

Plan, coordinate, and execute all events held within the hotel, from corporate meetings to social gatherings. Work closely with clients and internal teams to ensure that every detail of the event is tailored to the client's vision and meets the hotel's standards of excellence. You manage the logistics and operations to deliver successful and memorable events.

Launch agent website ↗

Skills

  • Next Questions

    Helps keep the conversation flowing by proposing tailored questions to ask next, based on the current discussion or shared interests. Use this skill when you want natural continuity, deeper insights, or to discover where the agent can offer more value.

    defaultsuggestionsrelatedquestionsconversationcontinuitydiscovery
  • Information

    Provides basic, publicly shareable information about the agent's identity, role, core capabilities, and area of responsibility. Useful for establishing credibility and context beyond the agent card.

    defaultpublicintroductionprofileaboutcapabilitiesrole
  • A2UI Test

    This skill is used internally to test A2UI rendering, catalog integration, and Flowise-based agent responses inside the inHotel platform.

    a2uidemotesting

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("cfca5361-06c0-48e3-a991-8105eee69489")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())