We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6fa81c commit c334859Copy full SHA for c334859
dotnet/src/Client.cs
@@ -1004,7 +1004,7 @@ public static ToolDefinition FromAIFunction(AIFunction function)
1004
=> new ToolDefinition(function.Name, function.Description, function.JsonSchema);
1005
}
1006
1007
- private record CreateSessionResponse(
+ internal record CreateSessionResponse(
1008
string SessionId,
1009
string? WorkspacePath);
1010
@@ -1019,7 +1019,7 @@ internal record ResumeSessionRequest(
1019
List<string>? SkillDirectories,
1020
List<string>? DisabledSkills);
1021
1022
- private record ResumeSessionResponse(
+ internal record ResumeSessionResponse(
1023
1024
1025
0 commit comments