- Updated the Stream method to return a structured response, including create, done, and completion hooks. - Introduced new methods for managing message history and building LLM requests, enhancing modularity. - Refactored the Script type to utilize a new hook structure, improving code organization. - Removed the obsolete hooks file to streamline the codebase. - Enhanced context types with additional fields for better integration with LLM models.
8 lines
251 B
Go
8 lines
251 B
Go
package hook
|
|
|
|
import "github.com/yaoapp/yao/agent/context"
|
|
|
|
// Create create a new assistant
|
|
func (s *Script) Create(ctx *context.Context, messages []context.Message) (*context.ResponseHookCreate, error) {
|
|
return &context.ResponseHookCreate{}, nil
|
|
}
|