feat: init go structure & add agent structure

This commit is contained in:
Acbox
2026-01-20 00:15:26 +08:00
parent 65e03f0b1e
commit 95aa4151cd
11 changed files with 312 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
package model
import "github.com/memohai/Memoh/model/provider"
type Model struct {
Provider provider.Provider
ModelID string
BaseURL string
APIKey string
}