We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://datawhalechina.github.io/llm-cookbook/#/C3/2.%20%E6%A8%A1%E5%9E%8B%E3%80%81%E6%8F%90%E7%A4%BA%E5%92%8C%E8%A7%A3%E6%9E%90%E5%99%A8%20Models,%20Prompts%20and%20Output%20Parsers
print("第一个客户客户消息类型类型:", type(customer_messages[0]),"\n")
print("第一个客户客户消息类型类型: ", customer_messages[0],"\n")
应修改为
print("第一个客户客户消息类型:", type(customer_messages[0]),"\n")
print("第一个客户客户消息内容: ", customer_messages[0],"\n")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://datawhalechina.github.io/llm-cookbook/#/C3/2.%20%E6%A8%A1%E5%9E%8B%E3%80%81%E6%8F%90%E7%A4%BA%E5%92%8C%E8%A7%A3%E6%9E%90%E5%99%A8%20Models,%20Prompts%20and%20Output%20Parsers
打印第一个客户消息类型
print("第一个客户客户消息类型类型:", type(customer_messages[0]),"\n")
打印第一个元素
print("第一个客户客户消息类型类型: ", customer_messages[0],"\n")
应修改为
打印第一个客户消息类型
print("第一个客户客户消息类型:", type(customer_messages[0]),"\n")
打印第一个元素
print("第一个客户客户消息内容: ", customer_messages[0],"\n")
The text was updated successfully, but these errors were encountered: