<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Java 企業應用
    不要溫柔的走入那個良夜

    2020年9月10日

    最近公司要上線智能客服系統,小公司要花幾十萬上線這樣一個系統老板還是不愿意。

    行業內的一些較為便宜的系統,做了一些調研,結果如下。

    調研

    品牌曉多奇智智能 V5春松
    官網地址地址地址地址
    功能一、功能上并不輸給V5,甚至能根據語音來調取相應的答復。二、可以自定義LOGO及頭像三、提供接口和智能V5差不多四、服務工單是有的,4家展示的數據各不相同功能與曉多類似,至于定制LOGO,我認為性價比太低了,還不如我們自行設計。功能確實不錯接口有:web網站、微信公眾號、APP、新浪微博、QQ、微信小程序、支付寶服務窗。功能相比其他三家顯得單薄,而且他們目前沒有太多的時間去完善,等其他項目完工,會跟進并完善界面與功能。
    售后服務有對應的售后服務人員根據付費的情況而享受不通的服務根據年費不同而享受的服務也不同有QQ對接的聯系人,響應時間不穩定,但絕對有人應答并解決問題
    源碼不提供不提供不提供開源
    形式云服務云服務 / 私有部署云服務私有部署
    價格3.8萬一年,1800一個坐席。如果簽訂合同,這個坐席可以免費(1-2個)純saas版本的話,機器人系統是一年1萬,至于功能呼叫中心不能實現,頁面設計是固定免費版基礎版:6800高級版:18000專業版:48000 地址目前是免費,開源,維護一般活躍,如果要做到一些定制化開發,官方銷售會給報價(一次性買斷,簽合同后期提供技術保障)

    結論

    體驗了不同環境,對 UI、機器人客服比較,最終選擇哪個還沒有定。

    posted @ 2020-09-10 09:13 cpegtop| 編輯 收藏

    2013年8月23日

    how to use DevStack to launch a stack with Heat in Ubuntu 12.04 Desktop dist?
    1. create a shell file in home dir ~/createStack .
    cd ~
    sudo apt
    -get update || yum update -y
    sudo apt
    -get install -qqy git || yum install -y git
    PASSWORD
    =*
    git clone https:
    //github.com/openstack-dev/devstack.git
    cd devstack
    echo 
    "ENABLED_SERVICES+=,heat,h-api,h-api-cfn,h-api-cw,h-eng">localrc
    echo 
    "DATABASE_PASSWORD=$PASSWORD">>localrc
    echo 
    "RABBIT_PASSWORD=$PASSWORD">>localrc
    echo 
    "SERVICE_TOKEN=$PASSWORD">>localrc
    echo 
    "SERVICE_PASSWORD=$PASSWORD">>localrc
    echo 
    "ADMIN_PASSWORD=$PASSWORD">>localrc
    echo 
    "IMAGE_URLS+=\",http://fedorapeople.org/groups/heat/prebuilt-jeos-images/F17-x86_64-cfntools.qcow2\"">>localrc
    echo "IMAGE_URLS+=\",http://fedorapeople.org/groups/heat/prebuilt-jeos-images/U10-x86_64-cfntools.qcow2\"">>localrc
    echo "IMAGE_URLS+=\",http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz\"">>localrc
    ./stack.sh
    2. chmod +x createStack.sh
    3.run ~/createStack.sh
    posted @ 2013-08-23 09:36 cpegtop 閱讀(342) | 評論 (0)編輯 收藏

    2013年8月21日


    decorators i: introduction to python decorators

    '''
    Created on Aug 212013

    @author: hailiang
    '''
    class myDecorator(object):
        
        def __init__(self, f):
            print 
    "1:inside myDecorator.__init__()"
            self.f 
    = f  # Prove that function definition has completed
     
        def __call__(self, args
    =None):
            print 
    "3:inside myDecorator.__call__()"
            self.f(args)
     
    @myDecorator
    def aFunction(args
    =None):
        print 
    "4:inside aFunction()"
        print args
     
    print 
    "2:Finished decorating aFunction()"
     
    aFunction()
    print 
    "another call"
    aFunction(args
    ="I have value")

    posted @ 2013-08-21 17:38 cpegtop 閱讀(500) | 評論 (0)編輯 收藏

    2013年8月16日

    Online Docs
    http://docs.python.org/2.6/library/exceptions.html
    The class hierarchy for built-in exceptions is:

    BaseException
     
    +-- SystemExit
     
    +-- KeyboardInterrupt
     
    +-- GeneratorExit
     
    +-- Exception
          
    +-- StopIteration
          
    +-- StandardError
          
    |    +-- BufferError
          
    |    +-- ArithmeticError
          
    |    |    +-- FloatingPointError
          
    |    |    +-- OverflowError
          
    |    |    +-- ZeroDivisionError
          
    |    +-- AssertionError
          
    |    +-- AttributeError
          
    |    +-- EnvironmentError
          
    |    |    +-- IOError
          
    |    |    +-- OSError
          
    |    |         +-- WindowsError (Windows)
          
    |    |         +-- VMSError (VMS)
          
    |    +-- EOFError
          
    |    +-- ImportError
          
    |    +-- LookupError
          
    |    |    +-- IndexError
          
    |    |    +-- KeyError
          
    |    +-- MemoryError
          
    |    +-- NameError
          
    |    |    +-- UnboundLocalError
          
    |    +-- ReferenceError
          
    |    +-- RuntimeError
          
    |    |    +-- NotImplementedError
          
    |    +-- SyntaxError
          
    |    |    +-- IndentationError
          
    |    |         +-- TabError
          
    |    +-- SystemError
          
    |    +-- TypeError
          
    |    +-- ValueError
          
    |         +-- UnicodeError
          
    |              +-- UnicodeDecodeError
          
    |              +-- UnicodeEncodeError
          
    |              +-- UnicodeTranslateError
          
    +-- Warning
               
    +-- DeprecationWarning
               
    +-- PendingDeprecationWarning
               
    +-- RuntimeWarning
               
    +-- SyntaxWarning
               
    +-- UserWarning
               
    +-- FutureWarning
           
    +-- ImportWarning
           
    +-- UnicodeWarning
           
    +-- BytesWarning
    exception BaseException

    The base class for all built-in exceptions. It is not meant to be directly inherited by user-defined classes (for that use Exception). If str() or unicode() is called on an instance of this class, the representation of the argument(s) to the instance are returned or the empty string when there were no arguments. All arguments are stored in args as a tuple.

    New in version 2.5.

    exception Exception

    All built-in, non-system-exiting exceptions are derived from this class. All user-defined exceptions should also be derived from this class.

    Changed in version 2.5: Changed to inherit from BaseException.

    '''
    Created on Aug 152013
    '''
    class MyException(Exception):
    #     
    """My documentation"""
    class MyException(Exception):
        pass
    class MyException(Exception):
    #     def _get_message(self): 
    #         
    return self.args[0]
    #     def _set_message(self, message): 
    #         self._message 
    = message
    #     message 
    = property(_get_message, _set_message)

    try:
        raise MyException(
    'description1''description2')
    except MyException as my:
        print str(my)
        print unicode(my) 
        
    try:
        raise MyException(u
    'description1', u'description2')
    except MyException as my:
        print str(my)  
        print unicode(my)  
       
    posted @ 2013-08-16 10:23 cpegtop 閱讀(372) | 評論 (0)編輯 收藏

    2013年8月15日

    #! /bin/bash 
    #######################
    #
    #######################

    # constants

    # functions

    # main 

    -"${BASH_SOURCE[0]}" -"${BASH_SOURCE[0]}" = "$0" ] || return
    posted @ 2013-08-15 12:17 cpegtop 閱讀(380) | 評論 (0)編輯 收藏
    僅列出標題  下一頁
     
    主站蜘蛛池模板: 最近的中文字幕大全免费版| 亚洲精品乱码久久久久久V| 永久免费精品影视网站| 性做久久久久免费看| 国产亚洲人成在线播放| 狠狠久久永久免费观看| 亚洲av日韩精品久久久久久a| 麻豆国产入口在线观看免费| 亚洲欧美日韩中文字幕在线一区| 毛片a级毛片免费播放100| 亚洲中文字幕AV在天堂| 成人毛片免费观看视频大全| 亚洲欧洲无码AV不卡在线| 国产免费观看视频| 搜日本一区二区三区免费高清视频 | 羞羞漫画页面免费入口欢迎你 | 精品免费视在线观看| 久久青青草原亚洲AV无码麻豆| 久久久国产精品无码免费专区| 91天堂素人精品系列全集亚洲 | 一道本不卡免费视频| 黑人大战亚洲人精品一区| 免费观看成人久久网免费观看| 亚洲国产精品无码专区在线观看| 四虎成人精品永久免费AV| 亚洲av无码一区二区三区天堂古代 | 亚洲精品无码中文久久字幕| 免费国产怡红院在线观看| 中文无码日韩欧免费视频| 亚洲色图黄色小说| 午夜高清免费在线观看| 一级做性色a爰片久久毛片免费| 久久亚洲精品AB无码播放| 色妞WWW精品免费视频| 四虎精品免费永久免费视频| 亚洲人成网www| 国产一级大片免费看| 久草免费福利资源站| 伊人久久亚洲综合影院首页| 亚洲午夜精品久久久久久浪潮| 最近2019中文字幕免费大全5|