-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(swagger): cover p2p endpoints (#2862)
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
- Loading branch information
Showing
4 changed files
with
37 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package localai | ||
|
||
import ( | ||
"github.com/gofiber/fiber/v2" | ||
"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(c *fiber.Ctx) error { | ||
// Render index | ||
return c.JSON(schema.P2PNodesResponse{ | ||
Nodes: p2p.GetAvailableNodes(""), | ||
FederatedNodes: p2p.GetAvailableNodes(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) func(*fiber.Ctx) error { | ||
return func(c *fiber.Ctx) error { return c.Send([]byte(appConfig.P2PToken)) } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters