ZBrain Documentation
  • ZBrain Documentation
    • Components of ZBrain
    • Getting started with ZBrain
    • 📚Knowledge base
      • How to create a knowledge base?
      • Knowledge source
      • Information schema
      • File summary
      • Automated reasoning
      • Retrieval testing
      • Knowledge base settings
    • 📱APP
      • How to create a new app?
      • How to set up and customize your app?
      • How to access the app reporting dashboard?
    • 🤖ZBrain AI agents
      • Get started with agents on ZBrain
      • Deploying pre-built agents
      • Creating custom AI agents
        • Agent setup
        • Define input sources
        • Define Flow
          • Key elements of a Flow
          • Flow Components
            • Activepieces Platform
            • AITable
            • Airtable
            • Amazon S3
            • Amazon SNS
            • Amazon SQS
            • Amazon Textract
            • Apify
            • Apollo
            • Approval
            • Asana
            • Azure Communication Services
            • Azure Cosmos DB
            • Azure Document Intelligence
            • Azure OpenAI
            • Azure Translation
            • Bannerbear
            • Baserow
            • Beamer
            • Bedrock Claude
            • Bettermode
            • Binance
            • Bing Search
            • Blackbaud
            • Bonjoro
            • Box
            • Brevo
            • Brilliant Directories
            • Bubble
            • CSV
            • Calendly
            • Certopus
            • Clearout
            • Clockodo
            • Code
            • Confluence
            • Connections
            • Constant Contact
            • Contiguity
            • Contentful
            • Customer.io
            • Crypto
            • Databricks
            • Data Mapper
            • Date Helper
            • DeepL
            • Delay
            • Discord
            • Discourse
            • Drip
            • Dropbox
            • Dust
            • Facebook Pages
            • Figma
            • Files Helper
            • Flowise
            • Flowlu
            • Formbricks
            • Frame
            • Freshdesk
            • Freshsales
            • GCloud Pub/Sub
            • GenerateBanners
            • GhostCMS
            • GitHub
            • GitLab
            • Gmail
            • Google Calendar
            • Google Contacts
            • Google Docs
            • Google Drive
            • Google Forms
            • Google Gemini
            • Google My Business
            • Google Search
            • Google Search Console
            • Google Sheets
            • Google Tasks
            • Groq
            • Hacker News
            • Heartbeat
            • HubSpot
            • HTTP
            • Image Helper
            • Inputs
            • Instagram for Business
            • Intercom
            • Invoice Ninja
            • Jira Cloud
            • Jotform
            • Kimai
            • Kizeo Forms
            • LeadConnector
            • Line Bot
            • Linear
            • LinkedIn
            • LinkedIn Actions
            • LLMRails
            • Lusha
            • MailerLite
            • Mailchimp
            • Mautic
            • Microsoft Dynamics 365 Business Central
            • Microsoft Dynamics CRM
            • Microsoft Excel 365
            • Microsoft OneDrive
            • Microsoft Outlook Calendar
            • Microsoft Teams
            • Mixpanel
            • MongoDB
            • Notion
            • Odoo
            • OpenAI
            • OpenRouter
            • Pastebin
            • PDF
            • Postgres
            • PostHog
            • Pushover
            • Qdrant
            • Queue
            • Razorpay
            • Router
            • Salesforce
            • SendGrid
            • ServiceNow
            • SFTP
            • SharePoint
            • Slack
            • SMTP
            • Snowflake
            • SOAP
            • Spotify
            • Stability AI
            • Stable Diffusion Web UI
            • Storage
            • Stripe
            • SurrealDB
            • SurveyMonkey
            • Taskade
            • Telegram Bot
            • Text Helper
            • Trello
            • Twilio
            • Twitter
            • Utilities
            • WhatsApp Business
            • WordPress
            • XML
            • YouTube
            • ZBrain
            • Zendesk
            • ZeroBounce
            • Zoho Books
            • Zoho CRM
            • Zoho Invoice
            • Zoom
          • How to Define a Flow?
          • How to Test Each Step in the Flow?
        • Configure Additional Settings
        • Test and Deploy Agents
        • How to access, monitor, and manage agent performance and tasks?
    • Settings
    • đź“–API Tutorials
      • 📚Knowledge base
        • Automated Reasoning
      • 📱APP
      • 🤖Agents
Powered by GitBook
On this page
  • Add To List
  • Append
  • Get
  • Put
  • Remove
  • Remove from List
  1. ZBrain Documentation
  2. ZBrain AI agents
  3. Creating custom AI agents
  4. Define Flow
  5. Flow Components

Storage

ZBrain Flow Storage is a scalable key/value storage service enabling users to store and retrieve data quickly. It provides fast, reliable data access, making it ideal for real-time applications, caching, and dynamic data management in enterprise AI workflows.

To integrate Storage with ZBrain Flow, follow these detailed steps:

  • Click the '+' button in the Flow and search for Storage in the ZBrain Flow.

  • Select the specific task from the list you want to include in the Flow. You can perform the below listed tasks:

    • Add To List: Add an item to a list in storage.

    • Append: Append a value to an existing value in storage.

    • Get: Retrieve a value from storage.

    • Put: Store a value in storage.

    • Remove: Remove a value from storage.

    • Remove from List: Remove an item from a list in storage.

Add To List

Add an item to a list in storage.

How to Configure Add To List to ZBrain Flow?

  • Provide the key parameter in the Key textbox. This identifier is used to retrieve a specific item from the key-value store.

  • Provide the corresponding value for the key parameter in the Value field. It represents the data item you want to append to the existing list associated with the specified key. Essentially, it’s the content you add to that list within the key-value store.

  • Select the storage scope of the value from the Store Scope drop-down. It defines where the data is stored (e.g., project scope). “Project” means the stored data is accessible throughout the entire project.

Append

Append a value to an existing value in storage.

How to Configure Append to ZBrain Flow?

  • This identifier is used to retrieve a specific item from the key-value store.

  • Provide the corresponding value for the key parameter in the Value field. It represents the data item you want to append to the existing list associated with the specified key. Essentially, it’s the content you add to that list within the key-value store.

  • Provide the separator between added values in the Separator field. Use \n for newlines.

  • Select the storage scope of the value from the Store Scope drop-down. It defines where the data is stored (e.g., project scope). “Project” means the stored data is accessible throughout the entire project.

Get

Retrieve a value from storage.

How to Configure Get to ZBrain Flow?

  • Provide the key parameter in the Key textbox. This is the identifier used to retrieve a specific item from the key-value store.

  • The system uses the Default Value provided in this field if the key does not exist.

  • If the Default Value is left empty and the key is not found, the module might return an error or an empty response.

  • Select the storage scope of the value from the Store Scope drop-down. It defines where the data is stored (e.g., project scope). “Project” means the stored data is accessible throughout the entire project.

Put

Store a value in storage.

How to Configure Put to ZBrain Flow?

  • Provide the key parameter in the Key textbox. This is the identifier used to retrieve a specific item from the key-value store.

  • Provide the corresponding value for the key parameter in the Value field. It represents the data item you want to append to the existing list associated with the specified key. Essentially, it’s the content you add to that list within the key-value store.

  • Select the storage scope of the value from the Store Scope drop-down. It defines where the data is stored (e.g., project scope). “Project” means the stored data is accessible throughout the entire project.

Remove

Remove a value from storage.

How to Configure Remove to ZBrain Flow?

  • Provide the key parameter in the Key textbox. This is the identifier used to retrieve a specific item from the key-value store.

  • Select the storage scope of the value from the Store Scope drop-down. It defines where the data is stored (e.g., project scope). “Project” means the stored data is accessible throughout the entire project.

Remove from List

Remove an item from a list in storage.

How to Configure Remove from List to ZBrain Flow?

  • Provide the key parameter in the Key textbox. This is the identifier used to retrieve a specific item from the key-value store.

  • Select the storage scope of the value from the Store Scope drop-down. It defines where the data is stored (e.g., project scope). “Project” means the stored data is accessible throughout the entire project.

PreviousStable Diffusion Web UINextStripe

Last updated 1 month ago

🤖