• 2024-11-26Claude MCP: 不是一个好方案也不是一个好消息
    先说结论,我认为MCP并不是一个好的解决方案MCP直觉上和FunctionTool以及ReAct,ToolUse几乎是一致的:功能函数参数->构建Prompt,InserttoContext功能函数调用->通过ReAct等方式,让LLM按照参数要求给出参数列表(在Dify中,其实是通过限制其输出为Json实现的,其
  • 2024-08-24try的简单性能测试
    #1.测试对函数类型检查使用捕捉异常和if先判断方式的时间差fromtimeitimporttimeitdefincrement_lbyl(x):ifisinstance(x,int):returnx+1elifisinstance(x,str)andx.isdigit():returnint(x)+1else:pass#
  • 2024-07-31Python - Strategies to handle exceptions in your code
    Therearetwoapproachesthatcanbefollowedwhenwewanttodealwithexceptionsthatoccurduetounusualevents:LBYL-LookBeforeYouLeapEAFP-EasiertoAskforForgivenessthanPermissionIntheLBYLapproach,weavoidexceptions,whileinthe