Skip to content

feat(chat): simplify Google streaming data parsing - #536

Merged
steebchen merged 6 commits into
mainfrom
feat/goog
Jul 28, 2025
Merged

steebchen merged 6 commits into
mainfrom
feat/goog

Conversation

@steebchen

@steebchen steebchen commented Jul 28, 2025

Copy link
Copy Markdown
Member

Refactored Google provider parsing to streamline logic by removing excessive JSON handling. Improved clarity and reduced redundant code.

Summary by CodeRabbit

  • Refactor
    • Unified and simplified the processing of streaming chat responses for all providers.
    • Improved accuracy in token usage reporting and completion status detection, especially for Google providers.
    • Enhanced consistency and reliability in streamed chat interactions.

Refactored Google provider parsing to streamline logic by removing
excessive JSON handling. Improved clarity and reduced redundant code.
@coderabbitai

coderabbitai Bot commented Jul 28, 2025

Copy link
Copy Markdown
Contributor

"""

Walkthrough

This change refactors the streaming response handling logic in the chat completions endpoint. It removes provider-specific incremental JSON parsing for Google providers, unifying streaming chunk parsing for all providers by processing lines prefixed with "data: ". It enhances token usage estimation for Google and Anthropic providers, refines finish reason extraction, and adds final usage chunk emission.

Changes

Cohort / File(s) Change Summary
Streaming response handling
apps/gateway/src/chat/chat.ts
Refactored streaming response parsing by removing Google-specific incremental JSON parsing; unified chunk parsing for all providers using line-based SSE parsing; enhanced token usage estimation for Google and Anthropic providers by adding fallback heuristics and full content encoding; refined finish reason extraction logic with provider-specific adjustments; added final usage chunk emission when usage tokens are incomplete; preserved and lightly reformatted streaming cache saving logic.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~15 minutes

Possibly related PRs

Note

⚡️ Unit Test Generation is now available in beta!

Learn more here, or try it out under "Finishing Touches" below.


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 19bf1cd and a58d778.

📒 Files selected for processing (1)
  • apps/gateway/src/chat/chat.ts (9 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/gateway/src/chat/chat.ts
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: e2e / run
  • GitHub Check: build / run
  • GitHub Check: autofix
✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch feat/goog

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
apps/gateway/src/chat/chat.ts (1)

2233-2239: Consider adding more context to error logs.

While the error handling is appropriate, consider including the provider name in the error log context for easier debugging of provider-specific issues.

 } catch (e) {
   console.warn("Failed to parse streaming JSON:", {
     error: e instanceof Error ? e.message : String(e),
     lineContent: line.substring(0, 100), // First 100 chars for debugging
     provider: usedProvider,
+    model: usedModel,
+    lineNumber: lines.indexOf(line),
   });
 }
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 7ecdbd5 and d3611b2.

📒 Files selected for processing (1)
  • apps/gateway/src/chat/chat.ts (4 hunks)
🧰 Additional context used
📓 Path-based instructions (4)
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit Inference Engine (.github/copilot-instructions.md)

Use localStorage instead of cookies for client-side data persistence

Files:

  • apps/gateway/src/chat/chat.ts
**/*.{js,ts}

📄 CodeRabbit Inference Engine (.github/copilot-instructions.md)

**/*.{js,ts}: Use drizzle with the latest object syntax for database operations
For read queries, always use db().query.<table>.findMany() or db().query.<table>.findFirst()

Files:

  • apps/gateway/src/chat/chat.ts
{apps/api,apps/gateway,packages/db}/**/*.ts

📄 CodeRabbit Inference Engine (CLAUDE.md)

{apps/api,apps/gateway,packages/db}/**/*.ts: Use Drizzle ORM with latest object syntax for database operations
For reads, use db().query.<table>.findMany() or db().query.<table>.findFirst()

Files:

  • apps/gateway/src/chat/chat.ts
**/*.{ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/general.mdc)

Never use as any or : any in TypeScript files.

Files:

  • apps/gateway/src/chat/chat.ts
🧠 Learnings (1)
apps/gateway/src/chat/chat.ts (3)

Learnt from: CR
PR: theopenco/llmgateway#0
File: CLAUDE.md:0-0
Timestamp: 2025-07-23T19:33:55.702Z
Learning: Applies to {apps/api,apps/gateway,packages/db}/**/*.ts : Use Drizzle ORM with latest object syntax for database operations

Learnt from: CR
PR: theopenco/llmgateway#0
File: CLAUDE.md:0-0
Timestamp: 2025-07-23T19:33:55.702Z
Learning: Applies to {apps/api,apps/gateway,packages/db}/**/*.ts : For reads, use db().query.<table>.findMany() or db().query.<table>.findFirst()

Learnt from: CR
PR: theopenco/llmgateway#0
File: CLAUDE.md:0-0
Timestamp: 2025-07-23T19:33:55.702Z
Learning: Applies to apps/api/routes/**/*.ts : Run pnpm generate after API route changes to update OpenAPI schemas

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: e2e / run
  • GitHub Check: build / run
  • GitHub Check: autofix
🔇 Additional comments (2)
apps/gateway/src/chat/chat.ts (2)

2047-2054: LGTM! Proper handling of incomplete lines in streaming data.

The buffer management logic correctly handles cases where JSON objects might be split across chunks by keeping incomplete lines in the buffer.


2047-2239: Verify Google provider streaming compatibility

We didn’t find any existing tests or documentation that cover streaming responses for google-vertex or google-ai-studio using the new line-based SSE parsing. Please ensure that:

  • The chat handler correctly breaks and parses SSE “data: …” lines for both Google providers.
  • The streamGenerateContent?alt=sse endpoint responses are compatible with transformStreamingChunkToOpenAIFormat and extractContentFromProvider.
  • Any provider-specific nuances (e.g., partial JSON payloads) are handled as expected.

Consider adding unit or integration tests that simulate streaming chunks from each Google provider to catch any parsing regressions.

Comment on lines 2064 to -2081

// Check for finish reason
if (data.candidates && data.candidates[0]?.finishReason) {
finishReason = data.candidates[0].finishReason;

// Send final chunk when we get a finish reason
if (finishReason) {
await writeSSEAndCache({
event: "done",
data: "[DONE]",
id: String(eventId++),
});
}
if (finalCompletionTokens === null) {
finalCompletionTokens =
estimateTokensFromContent(fullContent);
}

// Extract token usage using helper function
const usage = extractTokenUsage(data, usedProvider);
if (usage.promptTokens !== null) {
promptTokens = usage.promptTokens;
}
if (usage.completionTokens !== null) {
completionTokens = usage.completionTokens;
}
if (usage.totalTokens !== null) {
totalTokens = usage.totalTokens;
}
if (usage.reasoningTokens !== null) {
reasoningTokens = usage.reasoningTokens;
if (finalTotalTokens === null) {
finalTotalTokens =
(finalPromptTokens || 0) + (finalCompletionTokens || 0);
}

// For Google AI Studio, if candidatesTokenCount is not provided,
// we'll calculate it later from the fullContent
// Send final usage chunk before [DONE] if we have any usage data
if (
(usedProvider === "google-ai-studio" ||
usedProvider === "google-vertex") &&
!usage.completionTokens &&

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Token estimation uses inconsistent methods.

The code estimates tokens using simple division by 4, but elsewhere in the file (lines 241-276), there are more sophisticated methods using encodeChat and encode from gpt-tokenizer. Consider using the existing estimateTokens helper function for consistency.

 // Estimate missing tokens if needed using helper function
-if (finalPromptTokens === null) {
-  finalPromptTokens = Math.round(
-    messages.reduce(
-      (acc, m) => acc + (m.content?.length || 0),
-      0,
-    ) / 4,
-  );
-}
-
-if (finalCompletionTokens === null) {
-  finalCompletionTokens =
-    estimateTokensFromContent(fullContent);
-}
+const { calculatedPromptTokens, calculatedCompletionTokens } = estimateTokens(
+  usedProvider,
+  messages,
+  fullContent,
+  finalPromptTokens,
+  finalCompletionTokens,
+);
+finalPromptTokens = finalPromptTokens ?? calculatedPromptTokens;
+finalCompletionTokens = finalCompletionTokens ?? calculatedCompletionTokens;
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
if (finalPromptTokens === null) {
finalPromptTokens = Math.round(
messages.reduce(
(acc, m) => acc + (m.content?.length || 0),
0,
) / 4,
);
}
// Check for finish reason
if (data.candidates && data.candidates[0]?.finishReason) {
finishReason = data.candidates[0].finishReason;
// Send final chunk when we get a finish reason
if (finishReason) {
await writeSSEAndCache({
event: "done",
data: "[DONE]",
id: String(eventId++),
});
}
if (finalCompletionTokens === null) {
finalCompletionTokens =
estimateTokensFromContent(fullContent);
}
// Extract token usage using helper function
const usage = extractTokenUsage(data, usedProvider);
if (usage.promptTokens !== null) {
promptTokens = usage.promptTokens;
}
if (usage.completionTokens !== null) {
completionTokens = usage.completionTokens;
}
if (usage.totalTokens !== null) {
totalTokens = usage.totalTokens;
}
if (usage.reasoningTokens !== null) {
reasoningTokens = usage.reasoningTokens;
if (finalTotalTokens === null) {
finalTotalTokens =
(finalPromptTokens || 0) + (finalCompletionTokens || 0);
}
// Estimate missing tokens if needed using helper function
const { calculatedPromptTokens, calculatedCompletionTokens } = estimateTokens(
usedProvider,
messages,
fullContent,
finalPromptTokens,
finalCompletionTokens,
);
finalPromptTokens = finalPromptTokens ?? calculatedPromptTokens;
finalCompletionTokens = finalCompletionTokens ?? calculatedCompletionTokens;
if (finalTotalTokens === null) {
finalTotalTokens =
(finalPromptTokens || 0) + (finalCompletionTokens || 0);
}
🤖 Prompt for AI Agents
In apps/gateway/src/chat/chat.ts around lines 2064 to 2081, the token estimation
uses a simple division by 4 which is inconsistent with the more accurate methods
used elsewhere in the file. Replace the manual token calculation with the
existing estimateTokens helper function to ensure consistent and accurate token
estimation across the codebase.

Comment thread apps/gateway/src/chat/chat.ts Outdated
Comment on lines 2138 to 2143
completion_tokens: usage.output_tokens,
total_tokens:
estimatedPromptTokens + usage.output_tokens,
};
}
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Duplicate token estimation logic for Anthropic.

This token estimation logic duplicates the code at lines 2219-2224. Consider extracting this into a shared helper function to maintain DRY principles.

 // Estimate prompt tokens if not provided
-const estimatedPromptTokens = Math.round(
-  messages.reduce(
-    (acc, m) => acc + (m.content?.length || 0),
-    0,
-  ) / 4,
-);
+const estimatedPromptTokens = promptTokens ?? estimatePromptTokensFromMessages(messages);

Where estimatePromptTokensFromMessages would be a new helper function that encapsulates the token estimation logic and uses the more accurate encodeChat method when possible.

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In apps/gateway/src/chat/chat.ts around lines 2138 to 2143, the token estimation
logic duplicates similar code found at lines 2219 to 2224. To fix this, extract
the token estimation code into a new shared helper function named
estimatePromptTokensFromMessages that uses the encodeChat method for accuracy
when available. Replace both instances with calls to this helper to adhere to
DRY principles and improve maintainability.

Enhanced error handling by adding detailed logs for failed streaming
JSON parsing, including line content and provider info. Refactored
nested logic for improved clarity and robustness.
Added logic to extract and assign finishReason from responses
of Google Vertex and Google AI Studio providers. Improved
consistency in provider-specific handling of response finish
reasons.
Added fallback logic to estimate missing completion token counts
using content length when data is incomplete. Improved token
usage calculation for providers, ensuring accurate results even
if metadata is partially available. Enhanced error handling for
encoding failures with descriptive logs.
Added logic to extract and include token usage metadata (prompt, completion, and total tokens) for Google Vertex and Google AI Studio providers when available. Improved streaming data consistency by integrating usage details into streaming chunks.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (3)
apps/gateway/src/chat/chat.ts (3)

359-384: Duplicate token estimation logic detected.

This token estimation logic duplicates the code added in parseProviderResponse (lines 166-184). This violates DRY principles and makes the code harder to maintain.

Extract the Google provider token estimation logic into a shared helper function that can be used by both parseProviderResponse and extractTokenUsage:

+function estimateGoogleCompletionTokens(content: string | null): number | null {
+  if (!content) return null;
+  
+  try {
+    return encode(content).length;
+  } catch (error) {
+    console.error(`Failed to encode completion text: ${error}`);
+    return Math.max(1, Math.round(content.length / 4));
+  }
+}

 // In parseProviderResponse and extractTokenUsage
-if (completionTokens === null && content) {
-  try {
-    completionTokens = encode(content).length;
-  } catch (error) {
-    console.error(`Failed to encode completion text: ${error}`);
-    completionTokens = Math.max(1, Math.round(content.length / 4));
-  }
-}
+if (completionTokens === null) {
+  completionTokens = estimateGoogleCompletionTokens(content);
+}

2112-2124: Token estimation uses inconsistent methods.

The code estimates tokens using simple division by 4, but elsewhere in the file (lines 241-276), there are more sophisticated methods using encodeChat and encode from gpt-tokenizer. Consider using the existing estimateTokens helper function for consistency.

 // Estimate missing tokens if needed using helper function
-if (finalPromptTokens === null) {
-  finalPromptTokens = Math.round(
-    messages.reduce(
-      (acc, m) => acc + (m.content?.length || 0),
-      0,
-    ) / 4,
-  );
-}
-
-if (finalCompletionTokens === null) {
-  finalCompletionTokens =
-    estimateTokensFromContent(fullContent);
-}
+const { calculatedPromptTokens, calculatedCompletionTokens } = estimateTokens(
+  usedProvider,
+  messages,
+  fullContent,
+  finalPromptTokens,
+  finalCompletionTokens,
+);
+finalPromptTokens = finalPromptTokens ?? calculatedPromptTokens;
+finalCompletionTokens = finalCompletionTokens ?? calculatedCompletionTokens;

2187-2207: Duplicate token estimation logic for Anthropic.

This token estimation logic duplicates the code at lines 2195-2200. Consider extracting this into a shared helper function to maintain DRY principles.

 // Estimate prompt tokens if not provided
-const estimatedPromptTokens = Math.round(
-  messages.reduce(
-    (acc, m) => acc + (m.content?.length || 0),
-    0,
-  ) / 4,
-);
+const estimatedPromptTokens = promptTokens ?? estimatePromptTokensFromMessages(messages);

Where estimatePromptTokensFromMessages would be a new helper function that encapsulates the token estimation logic and uses the more accurate encodeChat method when possible.

🧹 Nitpick comments (1)
apps/gateway/src/chat/chat.ts (1)

164-184: Enhanced token estimation for Google providers looks good.

The addition of completion token estimation when candidatesTokenCount is missing is a valuable improvement. The implementation properly uses gpt-tokenizer with fallback estimation and includes appropriate error handling.

However, this token estimation logic is duplicated in the extractTokenUsage function (lines 359-384). Consider extracting this into a shared helper function to maintain DRY principles.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b1fd080 and 19bf1cd.

📒 Files selected for processing (1)
  • apps/gateway/src/chat/chat.ts (9 hunks)
🧰 Additional context used
📓 Path-based instructions (4)
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit Inference Engine (.github/copilot-instructions.md)

Use localStorage instead of cookies for client-side data persistence

Files:

  • apps/gateway/src/chat/chat.ts
**/*.{js,ts}

📄 CodeRabbit Inference Engine (.github/copilot-instructions.md)

**/*.{js,ts}: Use drizzle with the latest object syntax for database operations
For read queries, always use db().query.<table>.findMany() or db().query.<table>.findFirst()

Files:

  • apps/gateway/src/chat/chat.ts
{apps/api,apps/gateway,packages/db}/**/*.ts

📄 CodeRabbit Inference Engine (CLAUDE.md)

{apps/api,apps/gateway,packages/db}/**/*.ts: Use Drizzle ORM with latest object syntax for database operations
For reads, use db().query.<table>.findMany() or db().query.<table>.findFirst()

Files:

  • apps/gateway/src/chat/chat.ts
**/*.{ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/general.mdc)

Never use as any or : any in TypeScript files.

Files:

  • apps/gateway/src/chat/chat.ts
🧠 Learnings (1)
apps/gateway/src/chat/chat.ts (3)

Learnt from: CR
PR: theopenco/llmgateway#0
File: CLAUDE.md:0-0
Timestamp: 2025-07-23T19:33:55.702Z
Learning: Applies to {apps/api,apps/gateway,packages/db}/**/*.ts : Use Drizzle ORM with latest object syntax for database operations

Learnt from: CR
PR: theopenco/llmgateway#0
File: CLAUDE.md:0-0
Timestamp: 2025-07-23T19:33:55.702Z
Learning: Applies to {apps/api,apps/gateway,packages/db}/**/*.ts : For reads, use db().query.<table>.findMany() or db().query.<table>.findFirst()

Learnt from: CR
PR: theopenco/llmgateway#0
File: CLAUDE.md:0-0
Timestamp: 2025-07-23T19:33:55.702Z
Learning: Applies to apps/api/routes/**/*.ts : Run pnpm generate after API route changes to update OpenAPI schemas

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: build / run
  • GitHub Check: e2e / run
  • GitHub Check: autofix
🔇 Additional comments (8)
apps/gateway/src/chat/chat.ts (8)

3-3: LGTM on import additions.

The new imports (ApiKey, shortid, getModelStreamingSupport, hasProviderEnvironmentToken) are appropriately added and used throughout the file.

Also applies to: 7-7, 12-12, 43-43


2095-2101: Excellent unification of streaming parsing logic.

The change from provider-specific parsing to unified line-based parsing with "data: " prefixes is a significant improvement. The buffer management for incomplete lines is correctly implemented and handles edge cases properly.


2106-2160: Final usage chunk emission logic is well-implemented.

The logic to emit final usage chunks when token data is missing or incomplete is comprehensive and handles various scenarios properly. This ensures consistent usage reporting across all providers.


2167-2178: Improved error handling for JSON parsing.

The addition of try-catch around JSON parsing with detailed logging is a good improvement. The warning includes helpful context (provider, line content) for debugging malformed streaming responses.


2209-2232: Enhanced Google provider token usage extraction.

The integration of the enhanced extractTokenUsage function with the fullContent parameter properly addresses the missing completion token issue for Google providers during streaming.


2255-2283: Provider-specific finish reason extraction is well-structured.

The switch statement clearly handles finish reason extraction for each provider type with appropriate fallbacks. The logic correctly handles the various Anthropic event types and Google's finishReason format.


2286-2305: Enhanced token usage extraction with fullContent parameter.

The updated call to extractTokenUsage with the fullContent parameter enables better token estimation for Google providers during streaming, which aligns with the PR objectives.


2519-2519: Minor formatting improvement.

This appears to be a minor whitespace/formatting change that improves code readability without affecting functionality.

Removed excessive logging in token estimation logic for Google streaming. Improved clarity and reduced unnecessary console clutter.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant