@promptbook/browser 0.105.0-7 → 0.105.0-8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { string_javascript_name } from '../../_packages/types.index';
|
|
1
2
|
import type { AgentModelRequirements } from '../../book-2.0/agent-source/AgentModelRequirements';
|
|
3
|
+
import { ToolFunction } from '../../scripting/javascript/JavascriptExecutionToolsOptions';
|
|
2
4
|
import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition';
|
|
3
5
|
/**
|
|
4
6
|
* USE SEARCH ENGINE commitment definition
|
|
@@ -32,6 +34,10 @@ export declare class UseSearchEngineCommitmentDefinition extends BaseCommitmentD
|
|
|
32
34
|
*/
|
|
33
35
|
get documentation(): string;
|
|
34
36
|
applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements;
|
|
37
|
+
/**
|
|
38
|
+
* Gets the `web_search` tool function implementation.
|
|
39
|
+
*/
|
|
40
|
+
getToolFunctions(): Record<string_javascript_name, ToolFunction>;
|
|
35
41
|
}
|
|
36
42
|
/**
|
|
37
43
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
|
16
16
|
/**
|
|
17
17
|
* Represents the version string of the Promptbook engine.
|
|
18
|
-
* It follows semantic versioning (e.g., `0.105.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.105.0-7`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/browser",
|
|
3
|
-
"version": "0.105.0-
|
|
3
|
+
"version": "0.105.0-8",
|
|
4
4
|
"description": "Promptbook: Turn your company's scattered knowledge into AI ready books",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"module": "./esm/index.es.js",
|
|
95
95
|
"typings": "./esm/typings/src/_packages/browser.index.d.ts",
|
|
96
96
|
"peerDependencies": {
|
|
97
|
-
"@promptbook/core": "0.105.0-
|
|
97
|
+
"@promptbook/core": "0.105.0-8"
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
100
|
"crypto": "1.0.1",
|
package/umd/index.umd.js
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* @generated
|
|
24
24
|
* @see https://github.com/webgptorg/promptbook
|
|
25
25
|
*/
|
|
26
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.105.0-
|
|
26
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.105.0-8';
|
|
27
27
|
/**
|
|
28
28
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
29
29
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -6067,6 +6067,46 @@
|
|
|
6067
6067
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
6068
6068
|
*/
|
|
6069
6069
|
|
|
6070
|
+
/**
|
|
6071
|
+
* A search engine implementation that uses the SerpApi to fetch Google search results.
|
|
6072
|
+
*
|
|
6073
|
+
* @private <- TODO: !!!! Export via some package
|
|
6074
|
+
*/
|
|
6075
|
+
class SerpSearchEngine {
|
|
6076
|
+
get title() {
|
|
6077
|
+
return 'SerpApi Search Engine';
|
|
6078
|
+
}
|
|
6079
|
+
get description() {
|
|
6080
|
+
return 'Search engine that uses SerpApi to fetch Google search results';
|
|
6081
|
+
}
|
|
6082
|
+
checkConfiguration() {
|
|
6083
|
+
if (!process.env.SERP_API_KEY) {
|
|
6084
|
+
throw new Error('SERP_API_KEY is not configured');
|
|
6085
|
+
}
|
|
6086
|
+
}
|
|
6087
|
+
async search(query) {
|
|
6088
|
+
const apiKey = process.env.SERP_API_KEY;
|
|
6089
|
+
if (!apiKey) {
|
|
6090
|
+
throw new Error('SERP_API_KEY is not configured');
|
|
6091
|
+
}
|
|
6092
|
+
const url = new URL('https://serpapi.com/search');
|
|
6093
|
+
url.searchParams.set('q', query);
|
|
6094
|
+
url.searchParams.set('api_key', apiKey);
|
|
6095
|
+
url.searchParams.set('engine', 'google');
|
|
6096
|
+
const response = await fetch(url.toString());
|
|
6097
|
+
if (!response.ok) {
|
|
6098
|
+
const body = await response.text();
|
|
6099
|
+
throw new Error(`SerpApi failed with status ${response.status}: ${response.statusText}\n${body}`);
|
|
6100
|
+
}
|
|
6101
|
+
const data = (await response.json());
|
|
6102
|
+
return (data.organic_results || []).map((item) => ({
|
|
6103
|
+
title: item.title,
|
|
6104
|
+
url: item.link,
|
|
6105
|
+
snippet: item.snippet || '',
|
|
6106
|
+
}));
|
|
6107
|
+
}
|
|
6108
|
+
}
|
|
6109
|
+
|
|
6070
6110
|
/**
|
|
6071
6111
|
* USE SEARCH ENGINE commitment definition
|
|
6072
6112
|
*
|
|
@@ -6143,18 +6183,13 @@
|
|
|
6143
6183
|
? existingTools
|
|
6144
6184
|
: [
|
|
6145
6185
|
...existingTools,
|
|
6146
|
-
{ type: 'web_search' },
|
|
6147
|
-
// <- Note: [🔰] This is just using simple native search tool by OpenAI @see https://platform.openai.com/docs/guides/tools-web-search
|
|
6148
|
-
// In future we will use proper MCP search tool:
|
|
6149
|
-
/*
|
|
6150
|
-
|
|
6151
6186
|
{
|
|
6152
6187
|
name: 'web_search',
|
|
6153
|
-
description: spaceTrim(`
|
|
6154
|
-
|
|
6155
|
-
|
|
6156
|
-
|
|
6157
|
-
|
|
6188
|
+
description: spaceTrim$1.spaceTrim(`
|
|
6189
|
+
Search the internet for information.
|
|
6190
|
+
Use this tool when you need to find up-to-date information or facts that you don't know.
|
|
6191
|
+
${!content ? '' : `Search scope / instructions: ${content}`}
|
|
6192
|
+
`),
|
|
6158
6193
|
parameters: {
|
|
6159
6194
|
type: 'object',
|
|
6160
6195
|
properties: {
|
|
@@ -6166,7 +6201,6 @@
|
|
|
6166
6201
|
required: ['query'],
|
|
6167
6202
|
},
|
|
6168
6203
|
},
|
|
6169
|
-
*/
|
|
6170
6204
|
];
|
|
6171
6205
|
// Return requirements with updated tools and metadata
|
|
6172
6206
|
return {
|
|
@@ -6178,6 +6212,33 @@
|
|
|
6178
6212
|
},
|
|
6179
6213
|
};
|
|
6180
6214
|
}
|
|
6215
|
+
/**
|
|
6216
|
+
* Gets the `web_search` tool function implementation.
|
|
6217
|
+
*/
|
|
6218
|
+
getToolFunctions() {
|
|
6219
|
+
return {
|
|
6220
|
+
async web_search(args) {
|
|
6221
|
+
console.log('!!!! [Tool] web_search called', { args });
|
|
6222
|
+
const { query } = args;
|
|
6223
|
+
if (!query) {
|
|
6224
|
+
throw new Error('Search query is required');
|
|
6225
|
+
}
|
|
6226
|
+
const searchEngine = new SerpSearchEngine();
|
|
6227
|
+
const results = await searchEngine.search(query);
|
|
6228
|
+
return spaceTrim$1.spaceTrim((block) => `
|
|
6229
|
+
Search results for "${query}":
|
|
6230
|
+
|
|
6231
|
+
${block(results
|
|
6232
|
+
.map((result) => spaceTrim$1.spaceTrim(`
|
|
6233
|
+
- **${result.title}**
|
|
6234
|
+
${result.url}
|
|
6235
|
+
${result.snippet}
|
|
6236
|
+
`))
|
|
6237
|
+
.join('\n\n'))}
|
|
6238
|
+
`);
|
|
6239
|
+
},
|
|
6240
|
+
};
|
|
6241
|
+
}
|
|
6181
6242
|
}
|
|
6182
6243
|
/**
|
|
6183
6244
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|