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