Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 0 additions & 62 deletions .github/workflows/publish.yml

This file was deleted.

24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@ A comprehensive .NET SDK for Progress Agentic RAG's NucliaDb, providing RAG (Ret

## 📚 Documentation

- **[Full SDK Documentation](docs/index.md)** - Complete API reference, configuration options, and advanced features
- **[Getting Started Examples](samples/GettingStarted/Basics/)** - Step-by-step tutorials covering:
- Basic connectivity
- Dependency injection integration
- Streaming responses
- Citations and source attribution
- Structured outputs
- **[Blazor Sample App](samples/GettingStarted/Blazor/SDK_Blazor_Ask/)** - Complete Blazor Web App demonstrating SDK integration
- **[Full SDK Documentation](https://docs.rag.progress.cloud/docs/develop/dotnet-sdk/)** - Complete API reference, configuration options, and advanced features

## Installation

Expand Down Expand Up @@ -39,10 +32,17 @@ using Progress.Nuclia.Extensions;
// Create configuration
var config = new NucliaDbConfig(
ZoneId: "aws-us-east-2-1",
KnowledgeBoxId: "your-knowledge-box-id",
KnowledgeBoxId: "your-knowledge-box-id",
ApiKey: "your-api-key"
);

// Register with logging
builder.Services.AddNucliaDb(config).UseLogging();
```
// Create a client instance
using var nucliaDbClient = new NucliaDbClient(config);

// Or Register with DI and inject as nucliaDbClient
// builder.Services.AddNucliaDb(config).UseLogging();

// ask a question
var response = await nucliaDbClient.Search.AskAsync(new AskRequest("What is Nuclia?"));
Console.WriteLine(response.Data.Answer);
```
3 changes: 2 additions & 1 deletion src/Progress.Nuclia/Progress.Nuclia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIconUrl>http://www.telerik.com/sfimages/default-source/logos/progress-64x64.png</PackageIconUrl>
<PackageIcon>progress-64x64.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="" />
<None Include="../../LICENSE" Pack="true" PackagePath="" />
<None Include="images\progress-64x64.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
Expand Down
Binary file added src/Progress.Nuclia/images/progress-64x64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.