7 lines
97 B
Go
7 lines
97 B
Go
package agent
|
|
|
|
type DynamicPrompt interface {
|
|
Render(a *Agent) (string, error)
|
|
Role() string
|
|
}
|