mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-03 15:23:30 +08:00
16 lines
250 B
Go
16 lines
250 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"
|
|
)
|