-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
191 changed files
with
4,104 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/ApiVersionId.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,10 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
typealias ApiVersionId = String // One of: | ||
|
13 changes: 13 additions & 0 deletions
13
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/AttributionParams.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,13 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class AttributionParams( | ||
val repositoryNames: List<String>, | ||
val limitHit: Boolean, | ||
) | ||
|
13 changes: 13 additions & 0 deletions
13
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Attribution_SearchParams.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,13 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Attribution_SearchParams( | ||
val id: String, | ||
val snippet: String, | ||
) | ||
|
14 changes: 14 additions & 0 deletions
14
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Attribution_SearchResult.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,14 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Attribution_SearchResult( | ||
val error: String? = null, | ||
val repoNames: List<String>, | ||
val limitHit: Boolean, | ||
) | ||
|
10 changes: 10 additions & 0 deletions
10
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/AuthMethod.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,10 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
typealias AuthMethod = String // One of: dotcom, github, gitlab, google | ||
|
30 changes: 30 additions & 0 deletions
30
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/AuthStatus.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,30 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class AuthStatus( | ||
val username: String, | ||
val endpoint: String, | ||
val isDotCom: Boolean, | ||
val isLoggedIn: Boolean, | ||
val isFireworksTracingEnabled: Boolean, | ||
val showInvalidAccessTokenError: Boolean, | ||
val authenticated: Boolean, | ||
val hasVerifiedEmail: Boolean, | ||
val requiresVerifiedEmail: Boolean, | ||
val siteHasCodyEnabled: Boolean, | ||
val siteVersion: String, | ||
val codyApiVersion: Long, | ||
val configOverwrites: CodyLLMSiteConfiguration? = null, | ||
val showNetworkError: Boolean? = null, | ||
val primaryEmail: String, | ||
val displayName: String? = null, | ||
val avatarURL: String, | ||
val userCanUpgrade: Boolean, | ||
val isOfflineMode: Boolean? = null, | ||
) | ||
|
14 changes: 14 additions & 0 deletions
14
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/AutocompleteItem.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,14 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class AutocompleteItem( | ||
val id: String, | ||
val insertText: String, | ||
val range: Range, | ||
) | ||
|
24 changes: 24 additions & 0 deletions
24
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/AutocompleteParams.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,24 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
data class AutocompleteParams( | ||
val uri: String, | ||
val filePath: String? = null, | ||
val position: Position, | ||
val triggerKind: TriggerKindEnum? = null, // Oneof: Automatic, Invoke | ||
val selectedCompletionInfo: SelectedCompletionInfo? = null, | ||
) { | ||
|
||
enum class TriggerKindEnum { | ||
@SerializedName("Automatic") Automatic, | ||
@SerializedName("Invoke") Invoke, | ||
} | ||
} | ||
|
13 changes: 13 additions & 0 deletions
13
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/AutocompleteResult.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,13 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class AutocompleteResult( | ||
val items: List<AutocompleteItem>, | ||
val completionEvent: CompletionBookkeepingEvent? = null, | ||
) | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/CancelParams.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,12 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class CancelParams( | ||
val id: String, | ||
) | ||
|
30 changes: 30 additions & 0 deletions
30
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/ChatError.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,30 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
data class ChatError( | ||
val kind: String? = null, | ||
val name: String, | ||
val message: String, | ||
val retryAfter: String? = null, | ||
val limit: Long? = null, | ||
val userMessage: String? = null, | ||
val retryAfterDate: Date? = null, | ||
val retryAfterDateString: String? = null, | ||
val retryMessage: String? = null, | ||
val feature: String? = null, | ||
val upgradeIsAvailable: Boolean? = null, | ||
val isChatErrorGuard: IsChatErrorGuardEnum, // Oneof: isChatErrorGuard | ||
) { | ||
|
||
enum class IsChatErrorGuardEnum { | ||
@SerializedName("isChatErrorGuard") IsChatErrorGuard, | ||
} | ||
} | ||
|
13 changes: 13 additions & 0 deletions
13
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/ChatExportResult.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,13 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class ChatExportResult( | ||
val chatID: String, | ||
val transcript: SerializedChatTranscript, | ||
) | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/ChatHistory.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,12 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class ChatHistory( | ||
val chatID: String, | ||
) | ||
|
10 changes: 10 additions & 0 deletions
10
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/ChatSubmitType.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,10 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
typealias ChatSubmitType = String // One of: user, user-newchat | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_DeleteParams.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,12 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_DeleteParams( | ||
val chatId: String, | ||
) | ||
|
13 changes: 13 additions & 0 deletions
13
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_EditMessageParams.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,13 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_EditMessageParams( | ||
val id: String, | ||
val message: WebviewMessage, | ||
) | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_ExportParams.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,12 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_ExportParams( | ||
val fullHistory: Boolean, | ||
) | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_ModelsParams.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,12 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_ModelsParams( | ||
val modelUsage: ModelUsage, // Oneof: chat, edit, autocomplete | ||
) | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_ModelsResult.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,12 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_ModelsResult( | ||
val models: List<Model>, | ||
) | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_RemoteReposParams.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,12 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_RemoteReposParams( | ||
val id: String, | ||
) | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_RemoteReposResult.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,12 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_RemoteReposResult( | ||
val remoteRepos: List<Repo>? = null, | ||
) | ||
|
14 changes: 14 additions & 0 deletions
14
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_RestoreParams.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,14 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_RestoreParams( | ||
val modelID: String? = null, | ||
val messages: List<SerializedChatMessage>, | ||
val chatID: String, | ||
) | ||
|
13 changes: 13 additions & 0 deletions
13
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_SubmitMessageParams.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,13 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_SubmitMessageParams( | ||
val id: String, | ||
val message: WebviewMessage, | ||
) | ||
|
13 changes: 13 additions & 0 deletions
13
src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/Chat_Web_NewResult.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,13 @@ | ||
/* | ||
* Generated file - DO NOT EDIT MANUALLY | ||
* They are copied from the cody agent project using the copyProtocol gradle task. | ||
* This is only a temporary solution before we fully migrate to generated protocol messages. | ||
*/ | ||
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport") | ||
package com.sourcegraph.cody.agent.protocol_generated; | ||
|
||
data class Chat_Web_NewResult( | ||
val panelId: String, | ||
val chatId: String, | ||
) | ||
|
Oops, something went wrong.