mirror of
https://github.com/mudler/LocalAI.git
synced 2026-04-01 21:53:01 -04:00
* WIP: migrate to echo Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * tests Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
package localai
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/mudler/LocalAI/core/config"
|
|
"github.com/mudler/LocalAI/core/p2p"
|
|
"github.com/mudler/LocalAI/core/schema"
|
|
)
|
|
|
|
// ShowP2PNodes returns the P2P Nodes
|
|
// @Summary Returns available P2P nodes
|
|
// @Success 200 {object} []schema.P2PNodesResponse "Response"
|
|
// @Router /api/p2p [get]
|
|
func ShowP2PNodes(appConfig *config.ApplicationConfig) echo.HandlerFunc {
|
|
// Render index
|
|
return func(c echo.Context) error {
|
|
return c.JSON(200, schema.P2PNodesResponse{
|
|
Nodes: p2p.GetAvailableNodes(p2p.NetworkID(appConfig.P2PNetworkID, p2p.WorkerID)),
|
|
FederatedNodes: p2p.GetAvailableNodes(p2p.NetworkID(appConfig.P2PNetworkID, p2p.FederatedID)),
|
|
})
|
|
}
|
|
}
|
|
|
|
// ShowP2PToken returns the P2P token
|
|
// @Summary Show the P2P token
|
|
// @Success 200 {string} string "Response"
|
|
// @Router /api/p2p/token [get]
|
|
func ShowP2PToken(appConfig *config.ApplicationConfig) echo.HandlerFunc {
|
|
return func(c echo.Context) error { return c.String(200, appConfig.P2PToken) }
|
|
}
|