Skip to content

Commit e9c3021

Browse files
committed
fix
1 parent 1117ae9 commit e9c3021

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
- name: Build and test Ollama integration
138138
run: |
139139
set -e
140-
cargo make --cwd llm build-ollama
140+
cargo make build
141141
cd test
142142
golem-cli app build -b ollama-debug
143143
golem-cli app deploy -b ollama-debug

Makefile.toml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,6 @@ script_runner = "@duckscript"
9393
script = '''
9494
domains = array llm web-search
9595
96-
# since it depends on build artifacts
97-
if is_empty ${1}
98-
for domain in ${domains}
99-
exec cargo make --cwd ${domain} build
100-
end
101-
else
102-
exec cargo make --cwd ${1} build
103-
end
104-
105-
10696
# if there is no domain passed run for every domain
10797
if is_empty ${1}
10898
for domain in ${domains}

web-search/google/src/client.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ use serde::{Deserialize, Serialize};
66

77
const BASE_URL: &str = "https://www.googleapis.com/customsearch/v1";
88

9+
10+
/// Google Search API Client
11+
///
12+
/// Docs: https://developers.google.com/custom-search/v1/reference/rest/v1/cse/list
913
pub struct GoogleSearchApi {
1014
api_key: String,
1115
search_engine_id: String,

0 commit comments

Comments
 (0)