Files
knightutils/test/llamaindex/test_20250826_1.ipynb
2025-08-27 23:03:35 +08:00

80 lines
2.3 KiB
Plaintext

{
"cells": [
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-08-27T14:50:29.709398Z",
"start_time": "2025-08-27T14:50:28.732112Z"
}
},
"cell_type": "code",
"source": [
"import os\n",
"\n",
"from llama_index.llms.dashscope import DashScope\n",
"from llama_index.llms.openai import OpenAI\n",
"\n",
"os.environ[\"DASHSCOPE_API_KEY\"] = \"sk-e2a05bbcfac84e53b73f98acef15a009\"\n",
"llm = DashScope(model_name=\"qwen-max\") # 设置检索引擎生成回答时调用的大模型。"
],
"id": "2eeef59eecfab41a",
"outputs": [],
"execution_count": 1
},
{
"cell_type": "code",
"id": "initial_id",
"metadata": {
"collapsed": true,
"ExecuteTime": {
"end_time": "2025-08-27T14:50:42.901841Z",
"start_time": "2025-08-27T14:50:31.035200Z"
}
},
"source": [
"response = llm.complete(\"William Shakespeare is \")\n",
"print(response)"
],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"William Shakespeare (1564-1616) is widely regarded as one of the greatest writers in the English language and one of the world's pre-eminent dramatists. He is often called England's national poet and the \"Bard of Avon.\" His works, including 39 plays, 154 sonnets, and two long narrative poems, have been translated into every major living language and are performed more often than those of any other playwright. Some of his most famous plays include \"Romeo and Juliet,\" \"Hamlet,\" \"Macbeth,\" \"Othello,\" and \"King Lear.\" Shakespeare's influence extends from theater and literature to film, popular culture, and the English language itself, with many phrases and expressions from his works still in use today.\n"
]
}
],
"execution_count": 2
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": "",
"id": "5e8170348d3bad72"
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}