notebook for tokens (#2086)

searx
Harrison Chase 1 year ago committed by GitHub
parent 33ebb05251
commit 4cd5cf2e95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,7 +25,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 2, "execution_count": 3,
"id": "d1c55cc9", "id": "d1c55cc9",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
@ -35,7 +35,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 4, "execution_count": 5,
"id": "31667d54", "id": "31667d54",
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
@ -43,14 +43,18 @@
"name": "stdout", "name": "stdout",
"output_type": "stream", "output_type": "stream",
"text": [ "text": [
"42\n" "Total Tokens: 42\n",
"Prompt Tokens: 4\n",
"Completion Tokens: 38\n"
] ]
} }
], ],
"source": [ "source": [
"with get_openai_callback() as cb:\n", "with get_openai_callback() as cb:\n",
" result = llm(\"Tell me a joke\")\n", " result = llm(\"Tell me a joke\")\n",
" print(cb.total_tokens)" " print(f\"Total Tokens: {cb.total_tokens}\")\n",
" print(f\"Prompt Tokens: {cb.prompt_tokens}\")\n",
" print(f\"Completion Tokens: {cb.completion_tokens}\")"
] ]
}, },
{ {

Loading…
Cancel
Save