Skip to main content
1

Install

Install AIPkg.Docs

Install the NuGet package:
dotnet add package AIPkg.Docs
Or use the Package Manager Console:
Install-Package AIPkg.Docs
2

Configure

Configure your application

Add AIPkg.Docs to your application’s service collection:
using AIPkg.Docs;

// In your Program.cs or Startup.cs
services.AddAIPkgDocs();
Customize the configuration based on your needs. See the Configuration Guide for more options.
3

Use

Start using AIPkg.Docs

Basic usage example:
// Example code showing how to use AIPkg.Docs
var service = serviceProvider.GetRequiredService<IMyService>();
var result = await service.DoSomethingAsync();
You’re now ready to start using AIPkg.Docs! Check out the API Reference for more details.

Next Steps

API Reference

Explore the complete API documentation

Guides

Learn more with detailed guides and tutorials