(feat): Add experimental instantsearch-agent module for Agent Studio - #432
Merged
Conversation
Add `instantsearch-agent`, a new standalone Kotlin Multiplatform module that provides a minimal native client for Algolia Agent Studio. It ships the transport, SSE streaming parser, and a StateFlow-based chat state container (`ChatStore`) for building agentic (conversational AI) search experiences, with no bundled UI. The module is experimental and versioned independently from the main InstantSearch line: - Versioned on its own 0.x line (`VERSION_NAME=0.1.0` in the module's `gradle.properties`), decoupled from the 4.x artifacts. - All public API is gated behind the `@ExperimentalAgentStudioApi` opt-in marker, so consumers must explicitly acknowledge instability. - Registered in `settings.gradle.kts` and wired into the root `runDebugUnitTest` aggregate task. No existing modules are affected; this is purely additive.
afrencalg
requested review from
FabienMotte and
shaejaz
and removed request for
a team
June 4, 2026 08:52
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 164 |
| Duplication | 6 |
TIP This summary will be updated as you push new changes.
Haroenv
reviewed
Jun 10, 2026
Haroenv
left a comment
There was a problem hiding this comment.
code looks structured well, and example worked in the demo. I see lint is failing and CI didn't run build, seems like it's just a little formatting that needs to be ran, then CI will pass?
Contributor
Author
|
@Haroenv pipline passed. |
Haroenv
approved these changes
Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add
instantsearch-agent, a new standalone Kotlin Multiplatform module that provides a minimal native client for Algolia Agent Studio. It ships the transport, SSE streaming parser, and a StateFlow-based chat state container (ChatStore) for building agentic (conversational AI) search experiences, with no bundled UI.The module is experimental and versioned independently from the main InstantSearch line:
VERSION_NAME=0.1.0in the module'sgradle.properties), decoupled from the 4.x artifacts.@ExperimentalAgentStudioApiopt-in marker, so consumers must explicitly acknowledge instability.settings.gradle.ktsand wired into the rootrunDebugUnitTestaggregate task.No existing modules are affected; this is purely additive.
https://algolia.atlassian.net/browse/FX-3827