mirror of
https://github.com/mudler/LocalAGI.git
synced 2026-07-23 18:55:52 -04:00
7 lines
97 B
Go
7 lines
97 B
Go
package agent
|
|
|
|
type DynamicPrompt interface {
|
|
Render(a *Agent) (string, error)
|
|
Role() string
|
|
}
|