> ## Documentation Index
> Fetch the complete documentation index at: https://aipkg.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started with AI•Pkg.Docs

> Get up and running with AI•Pkg.Docs in minutes

<Steps>
  <Step title="Install" titleSize="h2">
    ### Install AI•Pkg.Docs

    Install the NuGet package:

    ```bash theme={null}
    dotnet add package AI•Pkg.Docs
    ```

    Or use the Package Manager Console:

    ```powershell theme={null}
    Install-Package AI•Pkg.Docs
    ```
  </Step>

  <Step title="Configure" titleSize="h2">
    ### Configure your application

    Add AI•Pkg.Docs to your application's service collection:

    ```csharp theme={null}
    using AI•Pkg.Docs;

    // In your Program.cs or Startup.cs
    services.AddAI•PkgDocs();
    ```

    <Note>
      Customize the configuration based on your needs. See the [Configuration Guide](/guides/configuration) for more options.
    </Note>
  </Step>

  <Step title="Use" titleSize="h2">
    ### Start using AI•Pkg.Docs

    Basic usage example:

    ```csharp theme={null}
    // Example code showing how to use AI•Pkg.Docs
    var service = serviceProvider.GetRequiredService<IMyService>();
    var result = await service.DoSomethingAsync();
    ```

    <Check>
      You're now ready to start using AI•Pkg.Docs! Check out the [API Reference](/api-reference) for more details.
    </Check>
  </Step>
</Steps>

## Next Steps

<CardGroup cols={2}>
  <Card title="API Reference" icon="code" href="/api-reference">
    Explore the complete API documentation
  </Card>

  <Card title="Guides" icon="book-open" href="/guides">
    Learn more with detailed guides and tutorials
  </Card>
</CardGroup>
