From 6c4f312f8a3d7e81d846d73c410f6a2be13e6897 Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Thu, 22 May 2025 11:58:29 -0400 Subject: [PATCH] docs: system assist component (#8089) * sidebars * initial-content * more * update * trailing-spaces * example * standardize-naming * shorten-introduction-and-remove-client * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Update docs/docs/Integrations/Nvidia/integrations-nvidia-system-assist.md --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --- .../integrations-nvidia-system-assist.md | 37 +++++++++++++++++++ docs/sidebars.js | 1 + 2 files changed, 38 insertions(+) create mode 100644 docs/docs/Integrations/Nvidia/integrations-nvidia-system-assist.md diff --git a/docs/docs/Integrations/Nvidia/integrations-nvidia-system-assist.md b/docs/docs/Integrations/Nvidia/integrations-nvidia-system-assist.md new file mode 100644 index 000000000..df9d619e5 --- /dev/null +++ b/docs/docs/Integrations/Nvidia/integrations-nvidia-system-assist.md @@ -0,0 +1,37 @@ +--- +title: Integrate NVIDIA System-Assist with Langflow +slug: /integrations-nvidia-system-assist +--- + +:::important +This component is only available for Langflow users with NVIDIA GPUs on Windows systems. +::: + +The **NVIDIA System-Assist** component enables interaction with NVIDIA GPU drivers through natural language prompts. + +For example, prompt System-Assist with `"What is my current GPU temperature?"` or `"Show me the available GPU memory"` to get information, and then tell System-Assist to modify your GPU settings. + +For more information, see the [NVIDIA G-assist project repository](https://github.com/NVIDIA/g-assist). + +## Prerequisites + +* Windows operating system +* NVIDIA GPU +* `gassist.rise` package installed. This package is already installed with Langflow. + +## Use the System-Assist component in a flow +1. Create a flow with a **Chat input** component, a **System-Assist** component, and a **Chat output** component. +2. Connect the **Chat input** component to the **System-Assist** component's **Prompt** input, and then connect the **System-Assist** component's output to the **Chat output** component. +3. Open the **Playground**, and then ask "What is my current GPU temperature?". +The **System-Assist** component queries your GPU, and the response appears in the **Playground**. + +### Inputs + +The **NVIDIA System-Assist** component accepts a single input: +- `prompt`: A human-readable prompt processed by NVIDIA System-Assist. + +### Outputs + +The **NVIDIA System-Assist** component outputs a [Message](/concepts-objects#message-object) object that contains: +- `text`: The response from NVIDIA System-Assist containing the completed operation result. +- The NVIDIA System-Assist message response is wrapped in a Langflow [Message](/concepts-objects#message-object) object. \ No newline at end of file diff --git a/docs/sidebars.js b/docs/sidebars.js index b941a9def..68194d2a4 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -248,6 +248,7 @@ module.exports = { items: [ "Integrations/Nvidia/integrations-nvidia-ingest", "Integrations/Nvidia/integrations-nvidia-nim-wsl2", + "Integrations/Nvidia/integrations-nvidia-system-assist", ], }, ],