-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(agentic context): add agentic context component (#6598)
CLOSE https://linear.app/sourcegraph/issue/CODY-4634 && https://linear.app/sourcegraph/issue/CODY-4688 Implemented https://www.figma.com/design/ttPjrGfWIEvPwIlPw8FwG1 - Moved ProcessList into an independent component called `AgenticChatCell` to display the status of agentic chat processing - Includes indicators for pending, successful, and failed processes - Integrates the new cell into the `Transcript` component - Adds Storybook stories to showcase the different states of the cell More changes merged from #6634 ### Latest Updated copies from aravind ![image](https://github.com/user-attachments/assets/730a7dba-b1b6-496e-92b4-584364481d69) ![image](https://github.com/user-attachments/assets/e72a5c55-8bc3-4c32-a6a7-c1907db4031d) ![image](https://github.com/user-attachments/assets/5bc4fb83-2d21-4de6-abdc-913032cd1d1e) ### Outdated <img width="641" alt="image" src="https://github.com/user-attachments/assets/32ba7197-3686-409f-af6b-016b4b9df9f2" /> <img width="626" alt="image" src="https://github.com/user-attachments/assets/2b2df982-dccc-442a-b7c0-4888bb02eff6" /> <img width="624" alt="image" src="https://github.com/user-attachments/assets/6abb1071-a987-43c9-b630-6ffc9bbd4f4a" /> ## Test plan <!-- Required. See https://docs-legacy.sourcegraph.com/dev/background-information/testing_principles. --> UI update - Updated storybook --------- Co-authored-by: Ara <arafat.da.khan@gmail.com>
- Loading branch information
1 parent
8a34b3b
commit d3a6f7e
Showing
29 changed files
with
839 additions
and
340 deletions.
There are no files selected for viewing
This file contains 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
5 changes: 5 additions & 0 deletions
5
...s/kotlin/lib/src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/ProcessType.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
typealias ProcessType = String // One of: tool, confirmation | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.