Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: release server-ai #38

Merged
merged 1 commit into from
Nov 12, 2024
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
8 changes: 8 additions & 0 deletions pkgs/sdk/server-ai/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# LaunchDarkly AI SDK (server-side) for .NET

# ⛔️⛔️⛔️⛔️

> [!CAUTION]
> This library is a alpha version and should not be considered ready for production use while this message is visible.

# ☝️☝️☝️☝️☝️☝️


The LaunchDarkly AI SDK (server-side) for .NET is designed primarily for use in multi-user systems such as web servers and applications. It follows the server-side LaunchDarkly model for multi-user contexts. It is not intended for use in desktop and embedded systems applications.

Currently there is no client-side AI SDK for .NET. If you're interested, please let us know by filing an issue!
Expand Down
3 changes: 2 additions & 1 deletion pkgs/sdk/server-ai/src/LdAiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public sealed class LdAiClient : ILdAiClient
private readonly ILogger _logger;

/// <summary>
/// Constructs a new LaunchDarkly AI client.
/// Constructs a new LaunchDarkly AI client. Please note, the client library is an alpha release and is
/// not considered ready for production use.
///
/// Example:
/// <code>
Expand Down
2 changes: 2 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
},
"pkgs/sdk/server-ai": {
"package-name": "LaunchDarkly.ServerSdk.Ai",
"release-as": "0.1.0",
"bump-minor-pre-major": true,
"extra-files": [
"src/LaunchDarkly.ServerSdk.Ai.csproj"
]
Expand Down
Loading