You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(experimental): add fine-tuning endpoint and TRL support
This changeset defines new GRPC signatues for Fine tuning backends, and
add TRL backend as initial fine-tuning engine. This implementation also
supports exporting to GGUF and automatically importing it to LocalAI
after fine-tuning.
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Copy file name to clipboardExpand all lines: AGENTS.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ This file is an index to detailed topic guides in the `.agents/` directory. Read
12
12
|[.agents/llama-cpp-backend.md](.agents/llama-cpp-backend.md)| Working on the llama.cpp backend — architecture, updating, tool call parsing |
13
13
|[.agents/testing-mcp-apps.md](.agents/testing-mcp-apps.md)| Testing MCP Apps (interactive tool UIs) in the React UI |
14
14
|[.agents/api-endpoints-and-auth.md](.agents/api-endpoints-and-auth.md)| Adding API endpoints, auth middleware, feature permissions, user access control |
Copy file name to clipboardExpand all lines: core/cli/run.go
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -121,6 +121,9 @@ type RunCMD struct {
121
121
AgentPoolCollectionDBPathstring`env:"LOCALAI_AGENT_POOL_COLLECTION_DB_PATH" help:"Database path for agent collections" group:"agents"`
122
122
AgentHubURLstring`env:"LOCALAI_AGENT_HUB_URL" default:"https://agenthub.localai.io" help:"URL for the agent hub where users can browse and download agent configurations" group:"agents"`
AuthEnabledbool`env:"LOCALAI_AUTH" default:"false" help:"Enable user authentication and authorization" group:"auth"`
126
129
AuthDatabaseURLstring`env:"LOCALAI_AUTH_DATABASE_URL,DATABASE_URL" help:"Database URL for auth (postgres:// or file path for SQLite). Defaults to {DataPath}/database.db" group:"auth"`
0 commit comments