From 15bd60040ff135216079318b8c57878fb5488c2b Mon Sep 17 00:00:00 2001 From: John Smith Date: Sat, 26 Oct 2024 10:32:34 +1030 Subject: [PATCH] chore: Remove key type restictions --- sdk-bash/test.sh | 2 +- sdk-dotnet/src/Inferable.cs | 18 +++++++++--------- sdk-node/src/Inferable.ts | 2 +- sdk-node/src/eval/promptfoo.ts | 6 ------ 4 files changed, 11 insertions(+), 17 deletions(-) diff --git a/sdk-bash/test.sh b/sdk-bash/test.sh index a055013f..f4c94443 100644 --- a/sdk-bash/test.sh +++ b/sdk-bash/test.sh @@ -1,4 +1,4 @@ -INFERABLE_API_SECRET="sk_cluster_machine_151qeOFp251eH9v0MxRTYDnxOt2wexZQLmIXU8Vb8" +INFERABLE_API_SECRET="" source ./inferable.sh diff --git a/sdk-dotnet/src/Inferable.cs b/sdk-dotnet/src/Inferable.cs index 193b6699..570bb504 100644 --- a/sdk-dotnet/src/Inferable.cs +++ b/sdk-dotnet/src/Inferable.cs @@ -4,6 +4,11 @@ namespace Inferable { + public class Links + { + public static string DOCS_AUTH = "https://docs.inferable.ai/pages/auth"; + } + public class InferableOptions { public string? BaseUrl { get; set; } @@ -44,17 +49,12 @@ public InferableClient(InferableOptions? options = null, ILogger