Files
wehub-resource-sync a0c8464e58
Build Package / build (ubuntu-latest) (push) Failing after 1s
CodeQL / Analyze (python) (push) Failing after 1s
Core Typecheck / core-typecheck (push) Failing after 1s
Linting / lint (push) Failing after 1s
llama-dev tests / test-llama-dev (push) Failing after 1s
Publish Sub-Package to PyPI if Needed / publish_subpackage_if_needed (push) Has been skipped
Sync Docs to Developer Hub / sync-docs (push) Failing after 0s
Build Package / build (windows-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:26:52 +08:00

223 lines
5.3 KiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a href=\"https://colab.research.google.com/github/run-llama/llama_index/blob/main/docs/examples/llm/nebius.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Nebius LLMs\n",
"\n",
"This notebook demonstrates how to use LLMs from [Nebius AI Studio](https://studio.nebius.ai/) with LlamaIndex. Nebius AI Studio implements all state-of-the-art LLMs available for commercial use."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"First, let's install LlamaIndex and dependencies of Nebius AI Studio."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%pip install llama-index-llms-nebius llama-index"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Upload your Nebius AI Studio key from system variables below or simply insert it. You can get it by registering for free at [Nebius AI Studio](https://auth.eu.nebius.com/ui/login) and issuing the key at [API Keys section](https://studio.nebius.ai/settings/api-keys).\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"\n",
"NEBIUS_API_KEY = os.getenv(\"NEBIUS_API_KEY\") # NEBIUS_API_KEY = \"\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"None of PyTorch, TensorFlow >= 2.0, or Flax have been found. Models won't be available and only tokenizers, configuration and file/data utilities can be used.\n"
]
}
],
"source": [
"from llama_index.llms.nebius import NebiusLLM\n",
"\n",
"llm = NebiusLLM(\n",
" api_key=NEBIUS_API_KEY, model=\"meta-llama/Llama-3.3-70B-Instruct-fast\"\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Call `complete` with a prompt"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The Netherlands! Amsterdam is indeed the capital and largest city of the Netherlands.\n"
]
}
],
"source": [
"response = llm.complete(\"Amsterdam is the capital of \")\n",
"print(response)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Call `chat` with a list of messages"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"assistant: WALL-E is a small waste-collecting robot and the main character in the 2008 Pixar animated film of the same name.\n"
]
}
],
"source": [
"from llama_index.core.llms import ChatMessage\n",
"\n",
"messages = [\n",
" ChatMessage(role=\"system\", content=\"You are a helpful AI assistant.\"),\n",
" ChatMessage(\n",
" role=\"user\",\n",
" content=\"Answer briefly: who is Wall-e?\",\n",
" ),\n",
"]\n",
"response = llm.chat(messages)\n",
"print(response)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Streaming"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Using `stream_complete` endpoint "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The Netherlands! Amsterdam is indeed the capital and largest city of the Netherlands."
]
}
],
"source": [
"response = llm.stream_complete(\"Amsterdam is the capital of \")\n",
"for r in response:\n",
" print(r.delta, end=\"\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Using `stream_chat` with a list of messages"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"WALL-E is a small waste-collecting robot and the main character in the 2008 Pixar animated film of the same name."
]
}
],
"source": [
"from llama_index.core.llms import ChatMessage\n",
"\n",
"messages = [\n",
" ChatMessage(role=\"system\", content=\"You are a helpful AI assistant.\"),\n",
" ChatMessage(\n",
" role=\"user\",\n",
" content=\"Answer briefly: who is Wall-e?\",\n",
" ),\n",
"]\n",
"response = llm.stream_chat(messages)\n",
"for r in response:\n",
" print(r.delta, end=\"\")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}