Prabhjit dhillon
Prabhjit dhillon
New Coverage Formulas: Absolute Coverage: Computes the percentage as: Coverage(f1) = LinesCovered(f1) / LinesLinked(f1) Coverage Improvement: Computes the improvement as: Improvement(f1 vs f0) = NewlyCoveredLines(f1 vs f0) / LinesLinked(f0) (Here,...
Successfully integrated two different LLM-based seed generation methods (script and direct) into the main experimental workflow, making them usable for the auto-generated harnesses. Work related to using sample data/few-shot learning...
Refactored the local experiment runner (BuilderRunner) to eliminate the need to build a unique Docker image for each generated fuzz target, significantly speeding up local testing. Modified local build, run,...
# Feature Request: Add Streaming Callbacks Utility Currently, developers need to manually manage the response streaming process with custom code like: ```javascript const response = await model.generateContentStream([prompt]); let textBuf =...
# Feature Request: Custom Fetch and HTTP Agent Support ## Description Adds support for custom fetch implementations and Node.js httpAgent configuration per #288. ## Key Changes 1. Added `fetch` and...
# Add support for elastic embedding sizes under the standard 768 dimensions ## Description This PR adds support for customizing embedding dimensions in text embedding models, similar to what's available...
# Add streamCallbacks to generateContentStream ## Changes - Added a `StreamCallbacks` interface with `onData` and `onDone` callback functions - Updated `generateContentStream` to accept and process the callbacks ## Example Usage...
## Changes - Added support for initializing the SDK without an API key using ADC - Implemented token retrieval from ADC using the google-auth-library - Added AuthOptions interface to configure...
Addresses #6632. I will iteratively fix everything if the said implementation is up to expectation
Please let me know if this is the right approach