Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
541d882
First A2A
udaybandaru-stripe Sep 20, 2025
4aebdf2
Files Modified & Created
udaybandaru-stripe Sep 21, 2025
04852e5
A2A workflows. Here's what I've added:
udaybandaru-stripe Sep 21, 2025
afcfcb6
Conversation threading correctly fixed
udaybandaru-stripe Sep 22, 2025
77702f2
Dynamic UI Update
udaybandaru-stripe Sep 22, 2025
a9dd495
Refactor to have clean A2A interface
udaybandaru-stripe Sep 22, 2025
6ac3d89
Fixing a small bug in forking when mixing task and sync chat
udaybandaru-stripe Sep 23, 2025
2496fff
Added comments
udaybandaru-stripe Sep 23, 2025
2cfcf39
have clean useSSE.ts
udaybandaru-stripe Sep 23, 2025
58000f4
Dynamic title
udaybandaru-stripe Sep 23, 2025
fce2f65
Fix with automatic dynamic titles
udaybandaru-stripe Sep 23, 2025
2acb669
removing api/a2a/chat routing since we are calling api/agents/chat
ta-stripe Sep 24, 2025
76a56ab
Remove A2A chat components
ta-stripe Sep 26, 2025
93aa4a8
remove redundant functions in a2a/chat.js
ta-stripe Sep 26, 2025
f45f602
Create mock grpc agent
ta-stripe Sep 29, 2025
8af277e
slight changes to mock a2a agents' descriptions
ta-stripe Sep 29, 2025
d194f6f
set up grpc a2a in librechat
ta-stripe Sep 29, 2025
239ab5b
Allow hardcoding agents without agent card URL
ta-stripe Sep 30, 2025
7cfa4b2
(temp) reformat GRPC request for llm explorer agent grpc
ta-stripe Sep 30, 2025
b923d0d
(tmp) add actual Stripe a2a proto
ta-stripe Oct 1, 2025
88985a6
a2a grpc call to llm-explorer-agent is now working
ta-stripe Oct 1, 2025
31cce26
move third-party submodules to proto directory. remove the public a2a…
ta-stripe Oct 2, 2025
ff60293
remove public a2a and use customized partial a2a
ta-stripe Oct 2, 2025
a6fe16b
parse response correctly for a2a
ta-stripe Oct 2, 2025
6235e60
Render output correctly for hellow world agent
ta-stripe Oct 2, 2025
9b9fc0c
no need to change librechat.example.yaml
ta-stripe Oct 2, 2025
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
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "proto/protobuf"]
path = proto/protobuf
url = https://github.com/protocolbuffers/protobuf.git
[submodule "proto/googleapis"]
path = proto/googleapis
url = https://github.com/googleapis/googleapis.git
1 change: 1 addition & 0 deletions Dockerfile.multi
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ WORKDIR /app
RUN npm ci --omit=dev
COPY api ./api
COPY config ./config
COPY proto ./proto
COPY --from=data-provider-build /app/packages/data-provider/dist ./packages/data-provider/dist
COPY --from=data-schemas-build /app/packages/data-schemas/dist ./packages/data-schemas/dist
COPY --from=api-package-build /app/packages/api/dist ./packages/api/dist
Expand Down
Loading