Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change: enable new chat and search UIs by default #2079

Merged
merged 27 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
094d232
change: enable new chat and search UIs by default
abeatrix Dec 4, 2023
81ec55b
remove inline chat, fixup tree view, update tests
abeatrix Dec 4, 2023
34a6f8f
clean up
abeatrix Dec 4, 2023
b88cc6e
update changelog
abeatrix Dec 4, 2023
13e9598
merge main into branch
abeatrix Dec 4, 2023
d64dc17
skip add test
abeatrix Dec 4, 2023
5a6aa01
skip tests
abeatrix Dec 4, 2023
501bb86
remove old test case
abeatrix Dec 4, 2023
87e1b3a
remove old configs and commands
abeatrix Dec 4, 2023
9d70219
FIX TESTS THANKS DOM
abeatrix Dec 4, 2023
64e4a3f
clean up
abeatrix Dec 5, 2023
e756652
skip command intergration test
abeatrix Dec 5, 2023
2fe5b8a
Merge branch 'main' into bee/default-chat-ui
abeatrix Dec 5, 2023
a299932
skip intergration test for commands
abeatrix Dec 5, 2023
6ab3729
remove outdated test"
abeatrix Dec 5, 2023
1bdefc9
Merge branch 'main' into bee/default-chat-ui
abeatrix Dec 5, 2023
de37ea4
fix outdated tests
abeatrix Dec 5, 2023
745ca62
Merge branch 'main' into bee/default-chat-ui
abeatrix Dec 5, 2023
8a6ebf9
Merge branch 'main' into bee/default-chat-ui
abeatrix Dec 5, 2023
862b9cf
update e2e tests
abeatrix Dec 5, 2023
2499253
Fix inline e2e test
abeatrix Dec 5, 2023
c793622
fix flaky tests
abeatrix Dec 5, 2023
02c8a86
fix auth test:
abeatrix Dec 5, 2023
1cd4479
Merge branch 'main' into bee/default-chat-ui
abeatrix Dec 5, 2023
724e82e
skip chat intergration test
abeatrix Dec 5, 2023
789c526
skip flaky autocomplete notice test
abeatrix Dec 5, 2023
f5d813d
update based on suggestions
abeatrix Dec 5, 2023
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
8 changes: 0 additions & 8 deletions agent/src/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,6 @@ export class AgentEditor implements Editor {
return this.getActiveTextEditorSelection()
}

public getActiveInlineChatTextEditor(): ActiveTextEditor | null {
throw new Error('Method not implemented.')
}

public getActiveInlineChatSelection(): ActiveTextEditorSelection | null {
throw new Error('Method not implemented.')
}

public getActiveTextEditorSmartSelection(): Promise<ActiveTextEditorSelection | null> {
throw new Error('Method not implemented.')
}
Expand Down
104 changes: 0 additions & 104 deletions lib/shared/src/chat/recipes/inline-chat.ts

This file was deleted.

226 changes: 0 additions & 226 deletions lib/shared/src/chat/recipes/inline-touch.ts

This file was deleted.

2 changes: 0 additions & 2 deletions lib/shared/src/chat/recipes/recipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,12 @@ export type RecipeID =
| 'local-indexed-keyword-search'
| 'explain-code-detailed'
| 'explain-code-high-level'
| 'inline-touch'
| 'find-code-smells'
| 'fixup'
| 'generate-docstring'
| 'generate-unit-test'
| 'git-history'
| 'improve-variable-names'
| 'inline-chat'
| 'custom-prompt'
| 'next-questions'
| 'pr-description'
Expand Down
1 change: 0 additions & 1 deletion lib/shared/src/chat/transcript/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ export interface OldChatHistory {

export type ChatEventSource =
| 'chat'
| 'inline-chat'
| 'editor'
| 'menu'
| 'code-action'
Expand Down
4 changes: 0 additions & 4 deletions lib/shared/src/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,12 @@ export interface Configuration {
chatPreInstruction: string
autocomplete: boolean
autocompleteLanguages: Record<string, boolean>
inlineChat: boolean
codeActions: boolean
experimentalChatPanel: boolean
experimentalChatPredictions: boolean
experimentalSearchPanel: boolean
commandCodeLenses: boolean
experimentalSimpleChatContext: boolean
editorTitleCommandIcon: boolean
experimentalGuardrails: boolean
experimentalNonStop: boolean
experimentalLocalSymbols: boolean
autocompleteAdvancedProvider: 'anthropic' | 'fireworks' | 'unstable-openai' | null
autocompleteAdvancedServerEndpoint: string | null
Expand Down
Loading
Loading