Mango 🥠is a Golang wrapper for the MangoAPI, providing powerful AI functionalities and LLM capabilities. It's really cool! Give it a try and access some of its models for free.
Install the mango api
go get github.com/Mishel-07/mangoai@latest
Here is a basic example of how to use mango ai:
package main
import (
"fmt"
"github.com/Mishel-07/mangoai/mango"
)
func main() {
client := mango.NewMango()
messages := []mango.Messages{
Role: "user",
Content: "hi",
},
chatCompletion, err := client.Chat.Completions.Create("gpt-3.5-turbo", messages)
if err != nil {
fmt.Println("Error:", err)
return
}
content := chatCompletion.Choices[0].Message.Content
fmt.Println(content)
}
Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for more information.
For support or inquiries, please reach out to us at Telegram Support.