fabric/jina/jina.go

71 lines
1.5 KiB
Go
Raw Normal View History

package jina
// see https://jina.ai for more information
import (
"fmt"
"io"
"net/http"
"github.com/danielmiessler/fabric/common"
)
2024-09-16 20:06:32 +00:00
type Client struct {
*common.Configurable
ApiKey *common.SetupQuestion
}
2024-09-16 20:06:32 +00:00
func NewClient() (ret *Client) {
label := "Jina AI"
2024-09-16 20:06:32 +00:00
ret = &Client{
Configurable: &common.Configurable{
2024-09-16 20:06:32 +00:00
Label: label,
EnvNamePrefix: common.BuildEnvVariablePrefix(label),
},
}
2024-09-16 20:06:32 +00:00
ret.ApiKey = ret.AddSetupQuestion("API Key", false)
2024-09-16 20:06:32 +00:00
return
}
2024-09-16 20:06:32 +00:00
// ScrapeURL return the main content of a webpage in clean, LLM-friendly text.
func (jc *Client) ScrapeURL(url string) (ret string, err error) {
return jc.request(fmt.Sprintf("https://r.jina.ai/%s", url))
}
2024-09-16 20:06:32 +00:00
func (jc *Client) ScrapeQuestion(question string) (ret string, err error) {
return jc.request(fmt.Sprintf("https://s.jina.ai/%s", question))
}
2024-09-16 20:06:32 +00:00
func (jc *Client) request(requestURL string) (ret string, err error) {
var req *http.Request
if req, err = http.NewRequest("GET", requestURL, nil); err != nil {
err = fmt.Errorf("error creating request: %w", err)
return
}
2024-09-16 20:06:32 +00:00
// if api keys exist, set the header
if jc.ApiKey.Value != "" {
req.Header.Set("Authorization", "Bearer "+jc.ApiKey.Value)
}
2024-09-16 18:44:21 +00:00
2024-09-16 20:06:32 +00:00
client := &http.Client{}
var resp *http.Response
if resp, err = client.Do(req); err != nil {
err = fmt.Errorf("error sending request: %w", err)
return
}
defer resp.Body.Close()
2024-09-16 20:06:32 +00:00
var body []byte
if body, err = io.ReadAll(resp.Body); err != nil {
err = fmt.Errorf("error reading response body: %w", err)
return
}
ret = string(body)
return
}