mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-01 22:33:30 +08:00
17 lines
289 B
Go
17 lines
289 B
Go
package consts
|
|
|
|
type ConfigType string
|
|
|
|
const (
|
|
ConfigTypeContinue ConfigType = "continue"
|
|
ConfigTypeRooCode ConfigType = "roo-code"
|
|
)
|
|
|
|
type ChatRole string
|
|
|
|
const (
|
|
ChatRoleUser ChatRole = "user"
|
|
ChatRoleAssistant ChatRole = "assistant"
|
|
ChatRoleSystem ChatRole = "system"
|
|
)
|