first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:52:23 +03:00
commit 880f412e2c
2662 changed files with 866266 additions and 0 deletions

14
framework/list.go Normal file
View File

@@ -0,0 +1,14 @@
// Package framework provides a list of dependencies that are required for the framework to work.
package framework
// FrameworkDependency is a type that represents a dependency of the framework.
type FrameworkDependency string
const (
// FrameworkDependencyVectorStore indicates the framework requires a VectorStore implementation.
FrameworkDependencyVectorStore FrameworkDependency = "vector_store"
// FrameworkDependencyConfigStore indicates the framework requires a ConfigStore implementation.
FrameworkDependencyConfigStore FrameworkDependency = "config_store"
// FrameworkDependencyLogsStore indicates the framework requires a LogsStore implementation.
FrameworkDependencyLogsStore FrameworkDependency = "logs_store"
)