From b6ad6fcd3a23f8b7e1528a2a613f77a6e14c52fb Mon Sep 17 00:00:00 2001 From: Dimitri Glazkov Date: Sat, 27 Apr 2024 20:45:22 -0500 Subject: [PATCH] Add prompted tool chat. (#326) --- .../bgl/insta/chat-with-tools-prompted.json | 187 ++++++++++++++++++ 1 file changed, 187 insertions(+) create mode 100644 seeds/team-experiments/graphs/bgl/insta/chat-with-tools-prompted.json diff --git a/seeds/team-experiments/graphs/bgl/insta/chat-with-tools-prompted.json b/seeds/team-experiments/graphs/bgl/insta/chat-with-tools-prompted.json new file mode 100644 index 00000000..bdfb16f1 --- /dev/null +++ b/seeds/team-experiments/graphs/bgl/insta/chat-with-tools-prompted.json @@ -0,0 +1,187 @@ +{ + "title": "Tool-using Chat Boot with a Prompt", + "description": "This chatbot uses search and get web page tools.", + "version": "0.0.1", + "nodes": [ + { + "id": "repeater-b5a64681", + "type": "repeater", + "metadata": { + "visual": { + "x": 54, + "y": -32.99999999999994 + }, + "title": "Chat Loop", + "logLevel": "debug" + }, + "configuration": { + "worker": { + "kind": "board", + "path": "#940f7c71-f50a-4cd5-ad9b-0c9d07702ab5" + } + } + } + ], + "edges": [], + "graphs": { + "940f7c71-f50a-4cd5-ad9b-0c9d07702ab5": { + "title": "Single Turn", + "description": "A blank board. Use it as a starting point for your creations.", + "version": "0.0.1", + "nodes": [ + { + "type": "input", + "id": "input", + "configuration": { + "schema": { + "type": "object", + "properties": { + "context": { + "type": "string", + "title": "Incoming Conversation Context", + "examples": [] + } + }, + "required": [] + } + }, + "metadata": { + "visual": { + "x": -331, + "y": -206 + } + } + }, + { + "type": "output", + "id": "output", + "configuration": { + "schema": { + "type": "object", + "properties": { + "context": { + "type": "string", + "title": "Outgoing Context", + "examples": [] + } + }, + "required": [] + } + }, + "metadata": { + "visual": { + "x": 457, + "y": -29 + } + } + }, + { + "id": "human-48580446", + "type": "human", + "metadata": { + "visual": { + "x": -119, + "y": -227 + }, + "title": "Ask User", + "logLevel": "debug" + } + }, + { + "id": "toolWorker-7793ced3", + "type": "toolWorker", + "metadata": { + "visual": { + "x": 184, + "y": -216 + }, + "title": "Use a Tool", + "logLevel": "debug" + }, + "configuration": { + "tools": [ + "https://raw.githubusercontent.com/google/labs-prototypes/main/seeds/team-experiments/graphs/bgl/insta/tool-get-web-page.bgl.json", + "https://raw.githubusercontent.com/google/labs-prototypes/main/seeds/team-experiments/graphs/bgl/insta/tool-search.bgl.json" + ] + } + }, + { + "id": "secrets-dbf8ee4c", + "type": "secrets", + "configuration": { + "keys": ["model"] + }, + "metadata": { + "visual": { + "x": -24, + "y": 132 + }, + "title": "Get Model", + "logLevel": "debug" + } + }, + { + "id": "input-ac51f071", + "type": "input", + "metadata": { + "title": "Persona + Task", + "logLevel": "debug", + "visual": { + "x": -197, + "y": -10 + } + }, + "configuration": { + "schema": { + "properties": { + "instruction": { + "type": "string", + "title": "Persona + Task", + "format": "multiline", + "examples": [ + "You are a super-helpful chat bot who uses tools to help users. With these tools, you can search the web and find relevant information or go to specific pages on the web and get their contents. In cases where the tool is not applicable, you improvise and try to answer the question anyway. In situations when the user just wants to have a conversation, just have a conversation." + ] + } + }, + "type": "object", + "required": [] + } + } + } + ], + "edges": [ + { + "from": "input", + "to": "human-48580446", + "out": "context", + "in": "context" + }, + { + "from": "human-48580446", + "to": "toolWorker-7793ced3", + "out": "context", + "in": "context" + }, + { + "from": "toolWorker-7793ced3", + "to": "output", + "out": "context", + "in": "context" + }, + { + "from": "secrets-dbf8ee4c", + "to": "toolWorker-7793ced3", + "out": "model", + "in": "model" + }, + { + "from": "input-ac51f071", + "to": "toolWorker-7793ced3", + "out": "instruction", + "in": "instruction" + } + ], + "url": "file://fsapi~insta/chat-with-tools.bgl.json#940f7c71-f50a-4cd5-ad9b-0c9d07702ab5" + } + } +}