七、Shell 流程控制
7.1 if
#!/bin/bash
num1100
if test $[num1] 100
thenecho num1 是 100
fi 7.2 if else
#!/bin/bash
num1100
num2100
if test $[num1] -eq $[num2]
thenecho 两个数相等!
elseecho 两个数不相等!
fi 7.3 if else-if else
#!/…
题意:通过LangChain使用大型语言模型(LLM)处理电子邮件 问题背景:
I am quite new to LangChain and Python as im mainly doing C# but i am interested in using AI on my own data. So i wrote some python code using langch…