We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0225dd2 commit 821d4e3Copy full SHA for 821d4e3
core/src/main/kotlin/cc/unitmesh/devti/observer/agent/AgentState.kt
@@ -6,9 +6,22 @@ import com.intellij.util.diff.Diff.Change
6
import java.util.UUID
7
8
data class AgentState(
9
+ /**
10
+ * First question of user
11
+ */
12
+ var originIntention: String = "",
13
+
14
var conversationId: String = UUID.randomUUID().toString(),
15
16
var changeList: List<Change> = emptyList(),
17
18
var messages: List<Message> = emptyList(),
19
20
var usedTools: List<AgentTool> = emptyList(),
21
22
23
+ * Logging environment variables, maybe related to [cc.unitmesh.devti.provider.context.ChatContextProvider]
24
25
+ var environment: Map<String, String> = emptyMap()
26
)
27
0 commit comments