Customer Support Agent

Viewing the same solution through different personas

Navigation
๐Ÿ  Go to Home โŒ˜H
๐Ÿ›’ Open Flexi Store โŒ˜S
Actions
๐Ÿ’พ Save Solution โŒ˜S
๐Ÿš€ Deploy Solution
๐Ÿ“‹ Duplicate Solution
Persona Switching
๐Ÿ’ป Switch to Pro Code โŒ˜1
๐ŸŽจ Switch to Low Code โŒ˜2
โœจ Switch to No Code โŒ˜3
View Mode: Switch personas to see different abstractions of the same solution

Preview: Customer Support Agent

Flexi

Customer Support Agent

Online โ€ข Ready to help

Flexi
Hello! I'm your Customer Support Agent. I can help you with inquiries, technical issues, billing questions, and more. How can I assist you today?
I need help with my order
Flexi
I'd be happy to help with your order! Could you please provide your order number? I can look up the details and assist you further.

Agent Configuration

Name: Customer Support Agent
Version: 2.1.0
Model: GPT-4
Temperature: 0.7
Memory: 24h retention, 4000 token context
Escalation: Enabled for complex issues

Workflow Execution

1
Input Received

User query processed

2
LLM Processing

GPT-4 analyzing intent...

3
Routing

Route by intent

4
Memory Store

Save context

5
Response

Format output

Explorer
src
system_prompt.yaml
agent_config.json
workflows
system_prompt.yaml
agent_config.json
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
system:
  name: "Customer Support Agent"
  version: 2.1.0
  description: "Professional customer support agent with escalation and context management"
  
persona:
  tone: "professional, empathetic, solution-oriented"
  expertise: "customer service, problem-solving, technical support"
  communication_style: "clear, concise, helpful"
  
capabilities:
  - "handle customer inquiries"
  - "analyze issue severity"
  - "escalate complex issues to human agents"
  - "maintain conversation context"
  - "provide product information"
  - "process refunds and returns"
  
workflow:
  entry_point: "user_query"
  steps:
    - step: 1
      action: "receive_input"
      type: "input"
    - step: 2
      action: "llm_process"
      type: "llm"
      model: "gpt-4"
      temperature: 0.7
    - step: 3
      action: "route_by_intent"
      type: "router"
      routes:
        - "general_inquiry"
        - "technical_issue"
        - "billing_question"
        - "escalation_required"
    - step: 4
      action: "store_context"
      type: "memory"
      retention: "24h"
  
memory:
  type: "conversational"
  retention: "24h"
  context_window: 4000
  
escalation:
  enabled: true
  triggers:
    - "complex_technical_issue"
    - "billing_dispute"
    - "customer_request"
  escalation_target: "human_agent_queue"
  
api_integrations:
  - name: "product_database"
    endpoint: "https://api.example.com/products"
  - name: "order_system"
    endpoint: "https://api.example.com/orders"
  
response_format:
  style: "structured"
  include_suggestions: true
  max_length: 500
Terminal
$ flexigen validate system_prompt.yaml
โœ“ Configuration valid
$ _
Components
LLM
LLM Node
โคข
Splitter
โ‡„
Router
๐Ÿ’พ
Memory
API
API Call
โš™
Transform
Customer Support Agent Workflow Visual representation of the same solution
Step 1: Input
User Query
receive_input
Step 2: LLM Process
GPT-4
Temp: 0.7
llm_process
Step 3: Intent Router
Route by Intent
route_by_intent
Step 4: Memory
Store Context
24h Retention
store_context
Step 5: Response
Formatted Output
Max 500 chars
General Inquiry
Handle directly
Technical Issue
Analyze & resolve
Billing Question
Process request
Escalation
Human Agent Queue
Complex issues
Properties
0.7

Customer Support Agent - No Code View

This is the same solution shown in a simplified, guided interface

Solution Name: Customer Support Agent
Version: 2.1.0
Solution Type: Customer Support & Service
Persona: Professional, Empathetic, Solution-Oriented
Core Capabilities: Handle Inquiries โ€ข Analyze Issues โ€ข Escalate Complex Cases โ€ข Maintain Context
Workflow Steps: Input โ†’ LLM Process โ†’ Route by Intent โ†’ Store Context โ†’ Response
LLM Model: GPT-4 (Temperature: 0.7)
Memory: 24-hour Conversational Retention (4000 token context)
Escalation: Enabled (Complex Issues, Billing Disputes, Customer Requests)
API Integrations: Product Database โ€ข Order System
Router Paths: General Inquiry โ€ข Technical Issue โ€ข Billing Question โ€ข Escalation Required
Same Solution, Different View

Switch to Pro Code or Low Code to see the technical details of this same Customer Support Agent solution.