mirror of
https://github.com/ollama/ollama.git
synced 2026-02-20 08:16:07 -05:00
* add ability to disable cloud
Users can now easily opt-out of cloud inference and web search by
setting
```
"disable_ollama_cloud": true
```
in their `~/.ollama/server.json` settings file. After a setting update,
the server must be restarted.
Alternatively, setting the environment variable `OLLAMA_NO_CLOUD=1` will
also disable cloud features. While users previously were able to avoid
cloud models by not pulling or `ollama run`ing them, this gives them an
easy way to enforce that decision. Any attempt to run a cloud model when
cloud is disabled will fail.
The app's old "airplane mode" setting, which did a similar thing for
hiding cloud models within the app is now unified with this new cloud
disabled mode. That setting has been replaced with a "Cloud" toggle,
which behind the scenes edits `server.json` and then restarts the
server.
* gate cloud models across TUI and launch flows when cloud is disabled
Block cloud models from being selected, launched, or written to
integration configs when cloud mode is turned off:
- TUI main menu: open model picker instead of launching with a
disabled cloud model
- cmd.go: add IsCloudModelDisabled checks for all Selection* paths
- LaunchCmd: filter cloud models from saved Editor configs before
launch, fall through to picker if none remain
- Editor Run() methods (droid, opencode, openclaw): filter cloud
models before calling Edit() and persist the cleaned list
- Export SaveIntegration, remove SaveIntegrationModel wrapper that
was accumulating models instead of replacing them
* rename saveIntegration to SaveIntegration in config.go and tests
* cmd/config: add --model guarding and empty model list fixes
* Update docs/faq.mdx
Co-authored-by: Jeffrey Morgan <jmorganca@gmail.com>
* Update internal/cloud/policy.go
Co-authored-by: Jeffrey Morgan <jmorganca@gmail.com>
* Update internal/cloud/policy.go
Co-authored-by: Jeffrey Morgan <jmorganca@gmail.com>
* Update server/routes.go
Co-authored-by: Jeffrey Morgan <jmorganca@gmail.com>
* Revert "Update internal/cloud/policy.go"
This reverts commit 8bff8615f9.
Since this error shows up in other integrations, we want it to be
prefixed with Ollama
* rename cloud status
* more status renaming
* fix tests that weren't updated after rename
---------
Co-authored-by: ParthSareen <parth.sareen@ollama.com>
Co-authored-by: Jeffrey Morgan <jmorganca@gmail.com>
181 lines
4.8 KiB
Go
181 lines
4.8 KiB
Go
package tools
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/ollama/ollama/api"
|
|
"github.com/ollama/ollama/auth"
|
|
internalcloud "github.com/ollama/ollama/internal/cloud"
|
|
)
|
|
|
|
const (
|
|
webSearchAPI = "https://ollama.com/api/web_search"
|
|
webSearchTimeout = 15 * time.Second
|
|
)
|
|
|
|
// ErrWebSearchAuthRequired is returned when web search requires authentication
|
|
var ErrWebSearchAuthRequired = errors.New("web search requires authentication")
|
|
|
|
// WebSearchTool implements web search using Ollama's hosted API.
|
|
type WebSearchTool struct{}
|
|
|
|
// Name returns the tool name.
|
|
func (w *WebSearchTool) Name() string {
|
|
return "web_search"
|
|
}
|
|
|
|
// Description returns a description of the tool.
|
|
func (w *WebSearchTool) Description() string {
|
|
return "Search the web for current information. Use this when you need up-to-date information that may not be in your training data."
|
|
}
|
|
|
|
// Schema returns the tool's parameter schema.
|
|
func (w *WebSearchTool) Schema() api.ToolFunction {
|
|
props := api.NewToolPropertiesMap()
|
|
props.Set("query", api.ToolProperty{
|
|
Type: api.PropertyType{"string"},
|
|
Description: "The search query to look up on the web",
|
|
})
|
|
return api.ToolFunction{
|
|
Name: w.Name(),
|
|
Description: w.Description(),
|
|
Parameters: api.ToolFunctionParameters{
|
|
Type: "object",
|
|
Properties: props,
|
|
Required: []string{"query"},
|
|
},
|
|
}
|
|
}
|
|
|
|
// webSearchRequest is the request body for the web search API.
|
|
type webSearchRequest struct {
|
|
Query string `json:"query"`
|
|
MaxResults int `json:"max_results,omitempty"`
|
|
}
|
|
|
|
// webSearchResponse is the response from the web search API.
|
|
type webSearchResponse struct {
|
|
Results []webSearchResult `json:"results"`
|
|
}
|
|
|
|
// webSearchResult is a single search result.
|
|
type webSearchResult struct {
|
|
Title string `json:"title"`
|
|
URL string `json:"url"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
// Execute performs the web search.
|
|
// Uses Ollama key signing for authentication - this makes requests via ollama.com API.
|
|
func (w *WebSearchTool) Execute(args map[string]any) (string, error) {
|
|
if internalcloud.Disabled() {
|
|
return "", errors.New(internalcloud.DisabledError("web search is unavailable"))
|
|
}
|
|
|
|
query, ok := args["query"].(string)
|
|
if !ok || query == "" {
|
|
return "", fmt.Errorf("query parameter is required")
|
|
}
|
|
|
|
// Prepare request
|
|
reqBody := webSearchRequest{
|
|
Query: query,
|
|
MaxResults: 5,
|
|
}
|
|
|
|
jsonBody, err := json.Marshal(reqBody)
|
|
if err != nil {
|
|
return "", fmt.Errorf("marshaling request: %w", err)
|
|
}
|
|
|
|
// Parse URL and add timestamp for signing
|
|
searchURL, err := url.Parse(webSearchAPI)
|
|
if err != nil {
|
|
return "", fmt.Errorf("parsing search URL: %w", err)
|
|
}
|
|
|
|
q := searchURL.Query()
|
|
q.Add("ts", strconv.FormatInt(time.Now().Unix(), 10))
|
|
searchURL.RawQuery = q.Encode()
|
|
|
|
// Sign the request using Ollama key (~/.ollama/id_ed25519)
|
|
// This authenticates with ollama.com using the local signing key
|
|
ctx := context.Background()
|
|
data := fmt.Appendf(nil, "%s,%s", http.MethodPost, searchURL.RequestURI())
|
|
signature, err := auth.Sign(ctx, data)
|
|
if err != nil {
|
|
return "", fmt.Errorf("signing request: %w", err)
|
|
}
|
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodPost, searchURL.String(), bytes.NewBuffer(jsonBody))
|
|
if err != nil {
|
|
return "", fmt.Errorf("creating request: %w", err)
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/json")
|
|
if signature != "" {
|
|
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", signature))
|
|
}
|
|
|
|
// Send request
|
|
client := &http.Client{Timeout: webSearchTimeout}
|
|
resp, err := client.Do(req)
|
|
if err != nil {
|
|
return "", fmt.Errorf("sending request: %w", err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return "", fmt.Errorf("reading response: %w", err)
|
|
}
|
|
|
|
if resp.StatusCode == http.StatusUnauthorized {
|
|
return "", ErrWebSearchAuthRequired
|
|
}
|
|
if resp.StatusCode != http.StatusOK {
|
|
return "", fmt.Errorf("web search API returned status %d: %s", resp.StatusCode, string(body))
|
|
}
|
|
|
|
// Parse response
|
|
var searchResp webSearchResponse
|
|
if err := json.Unmarshal(body, &searchResp); err != nil {
|
|
return "", fmt.Errorf("parsing response: %w", err)
|
|
}
|
|
|
|
// Format results
|
|
if len(searchResp.Results) == 0 {
|
|
return "No results found for query: " + query, nil
|
|
}
|
|
|
|
var sb strings.Builder
|
|
sb.WriteString(fmt.Sprintf("Search results for: %s\n\n", query))
|
|
|
|
for i, result := range searchResp.Results {
|
|
sb.WriteString(fmt.Sprintf("%d. %s\n", i+1, result.Title))
|
|
sb.WriteString(fmt.Sprintf(" URL: %s\n", result.URL))
|
|
if result.Content != "" {
|
|
// Truncate long content (UTF-8 safe)
|
|
content := result.Content
|
|
runes := []rune(content)
|
|
if len(runes) > 300 {
|
|
content = string(runes[:300]) + "..."
|
|
}
|
|
sb.WriteString(fmt.Sprintf(" %s\n", content))
|
|
}
|
|
sb.WriteString("\n")
|
|
}
|
|
|
|
return sb.String(), nil
|
|
}
|