@openfloor/protocol - v0.0.4
    Preparing search index...

    Function createBasicManifest

    • Creates a basic agent manifest

      Parameters

      • options: {
            capabilities?: string[];
            department?: string;
            description: string;
            name: string;
            organization: string;
            role?: string;
            serviceUrl: string;
            speakerUri: string;
        }

        Manifest options

      Returns Manifest

      Manifest instance

      const manifest = createBasicManifest({
      speakerUri: 'tag:example.com,2025:bot1',
      serviceUrl: 'https://example.com/bot',
      name: 'Assistant',
      organization: 'Example Corp',
      description: 'A helpful assistant',
      capabilities: ['chat', 'help']
      });