Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
removing web fetch, will follow up
  • Loading branch information
andyjmorgan committed Sep 25, 2025
commit 440b40c2e6759150a45d96f03a766843f546b092
3 changes: 0 additions & 3 deletions Anthropic.SDK/Messaging/MessageResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
public Delta Delta { get; set; }

[JsonPropertyName("content_block")]
public ContentBlock? ContentBlock { get; set; }

Check warning on line 40 in Anthropic.SDK/Messaging/MessageResponse.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

[JsonPropertyName("message")]
public StreamMessage StreamStartMessage { get; set; }
Expand Down Expand Up @@ -116,7 +116,7 @@
public string Name { get; set; }

[JsonPropertyName("partial_json")]
public string? PartialJson { get; set; }

Check warning on line 119 in Anthropic.SDK/Messaging/MessageResponse.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
[JsonPropertyName("citation")]
public CitationResult Citation { get; set; }
}
Expand All @@ -127,21 +127,21 @@
public string Type { get; set; }

[JsonPropertyName("id")]
public string? Id { get; set; }

Check warning on line 130 in Anthropic.SDK/Messaging/MessageResponse.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

[JsonPropertyName("text")]
public string? Text { get; set; }

Check warning on line 133 in Anthropic.SDK/Messaging/MessageResponse.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

[JsonPropertyName("name")]
public string? Name { get; set; }

Check warning on line 136 in Anthropic.SDK/Messaging/MessageResponse.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

[JsonPropertyName("server_name")]
public string? ServerName { get; set; }

Check warning on line 139 in Anthropic.SDK/Messaging/MessageResponse.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

[JsonPropertyName("data")]
public string? Data { get; set; }

Check warning on line 142 in Anthropic.SDK/Messaging/MessageResponse.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
[JsonPropertyName("tool_use_id")]
public string? ToolUseId { get; set; }

Check warning on line 144 in Anthropic.SDK/Messaging/MessageResponse.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
[JsonPropertyName("content")]
public List<ContentBase> Content { get; set; }

Expand Down Expand Up @@ -183,8 +183,5 @@
{
[JsonPropertyName("web_search_requests")]
public int? WebSearchRequests { get; set; }

[JsonPropertyName("web_fetch_requests")]
public int? WebFetchRequests { get; set; }
}
}
Loading