Skip to content

Commit cb6c31b

Browse files
committed
Add the Google Search tool.
This is a modified version of answers-from-the-internet that responds with knowledge-like references to relevant search result page content instead of answering questions directly. Signed-off-by: Nick Hale <[email protected]>
1 parent 686b291 commit cb6c31b

12 files changed

+5597
-0
lines changed

google/search/.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.eslintrc.cjs

google/search/.eslintrc.cjs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es2021": true
6+
},
7+
"extends": "standard-with-typescript",
8+
"overrides": [
9+
{
10+
"env": {
11+
"node": true
12+
},
13+
"files": [
14+
".eslintrc.{js,cjs}"
15+
],
16+
"parserOptions": {
17+
"sourceType": "script"
18+
}
19+
}
20+
],
21+
"parserOptions": {
22+
"ecmaVersion": "latest"
23+
},
24+
"rules": {
25+
"no-labels": "off"
26+
}
27+
}

google/search/.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Node.js dependencies
2+
node_modules/
3+
4+
# TypeScript cache
5+
*.tsbuildinfo
6+
7+
# Environment variables
8+
.env
9+
.env.*
10+
11+
# Output of 'npm pack'
12+
*.tgz
13+
14+
# IDE settings
15+
.vscode/
16+
.idea/
17+
18+
# Build output
19+
dist/
20+
21+
# Optional eslint cache
22+
.eslintcache

0 commit comments

Comments
 (0)