diff --git a/docs/static/.nojekyll b/docs/static/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/docs/static/img/eval-concept.png b/docs/static/img/eval-concept.png new file mode 100644 index 000000000..0cba25dfb Binary files /dev/null and b/docs/static/img/eval-concept.png differ diff --git a/docs/static/img/eval-flow.png b/docs/static/img/eval-flow.png new file mode 100644 index 000000000..bd3cebdf8 Binary files /dev/null and b/docs/static/img/eval-flow.png differ diff --git a/docs/static/img/llama-stack-logo.png b/docs/static/img/llama-stack-logo.png new file mode 100644 index 000000000..d08f13ae1 Binary files /dev/null and b/docs/static/img/llama-stack-logo.png differ diff --git a/docs/static/img/llama-stack.png b/docs/static/img/llama-stack.png new file mode 100644 index 000000000..5f68c18a8 Binary files /dev/null and b/docs/static/img/llama-stack.png differ diff --git a/docs/static/img/prompt-format.png b/docs/static/img/prompt-format.png new file mode 100644 index 000000000..afcd07622 Binary files /dev/null and b/docs/static/img/prompt-format.png differ diff --git a/docs/static/img/providers/vector_io/read_time_comparison_sqlite-vec-faiss.png b/docs/static/img/providers/vector_io/read_time_comparison_sqlite-vec-faiss.png new file mode 100644 index 000000000..00e5fe03a Binary files /dev/null and b/docs/static/img/providers/vector_io/read_time_comparison_sqlite-vec-faiss.png differ diff --git a/docs/static/img/providers/vector_io/write_time_comparison_sqlite-vec-faiss.png b/docs/static/img/providers/vector_io/write_time_comparison_sqlite-vec-faiss.png new file mode 100644 index 000000000..bec796939 Binary files /dev/null and b/docs/static/img/providers/vector_io/write_time_comparison_sqlite-vec-faiss.png differ diff --git a/docs/static/img/providers/vector_io/write_time_sequence_sqlite-vec-faiss.png b/docs/static/img/providers/vector_io/write_time_sequence_sqlite-vec-faiss.png new file mode 100644 index 000000000..192d5e96e Binary files /dev/null and b/docs/static/img/providers/vector_io/write_time_sequence_sqlite-vec-faiss.png differ diff --git a/docs/static/img/rag.png b/docs/static/img/rag.png new file mode 100644 index 000000000..a5e5b8cdb Binary files /dev/null and b/docs/static/img/rag.png differ diff --git a/docs/static/img/remote_or_local.gif b/docs/static/img/remote_or_local.gif new file mode 100644 index 000000000..e1760dcfa Binary files /dev/null and b/docs/static/img/remote_or_local.gif differ diff --git a/docs/static/img/safety_system.webp b/docs/static/img/safety_system.webp new file mode 100644 index 000000000..e153da05e Binary files /dev/null and b/docs/static/img/safety_system.webp differ diff --git a/docs/static/llama-stack-spec.html b/docs/static/llama-stack-spec.html new file mode 100644 index 000000000..a036e5dc0 --- /dev/null +++ b/docs/static/llama-stack-spec.html @@ -0,0 +1,18056 @@ + + + +
+ + +docs
directory.
+ >
+ ),
+ },
+ {
+ title: 'Powered by React',
+ Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
+ description: (
+ <>
+ Extend or customize your website layout by reusing React. Docusaurus can
+ be extended while reusing the same header and footer.
+ >
+ ),
+ },
+];
+
+function Feature({Svg, title, description}) {
+ return (
+ {description}
++ Unified APIs for Inference, RAG, Agents, Tools, Safety, and Telemetry +
++ Get up and running with Llama Stack in just a few commands. Build your first RAG application locally. +
+{`# Install uv and start Ollama
+ollama run llama3.2:3b --keepalive 60m
+
+# Run Llama Stack server
+OLLAMA_URL=http://localhost:11434 \\
+ uv run --with llama-stack \\
+ llama stack build --distro starter \\
+ --image-type venv --run
+
+# Try the Python SDK
+from llama_stack_client import LlamaStackClient
+
+client = LlamaStackClient(
+ base_url="http://localhost:8321"
+)
+
+response = client.inference.chat_completion(
+ model="Llama3.2-3B-Instruct",
+ messages=[{
+ "role": "user",
+ "content": "What is machine learning?"
+ }]
+)`}
+ One consistent interface for all your AI needs - inference, safety, agents, and more.
+Swap between providers without code changes. Start local, deploy anywhere.
+Built-in safety, monitoring, and evaluation tools for enterprise applications.
+SDKs for Python, Node.js, iOS, Android, and REST APIs for any language.
++ Connect with developers building the future of AI applications +
+ +