You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the official frontend user interface component for [AgentIQ](https://github.com/NVIDIA/AgentIQ), an open-source library for building AI agents and workflows.
6
+
This is the official frontend user interface component for [AIQToolKit](https://github.com/NVIDIA/AIQToolKit), an open-source library for building AI agents and workflows.
7
7
8
8
This project builds upon the work of:
9
9
-[chatbot-ui](https://github.com/mckaywrigley/chatbot-ui) by Mckay Wrigley
@@ -20,7 +20,7 @@ This project builds upon the work of:
20
20
## Getting Started
21
21
22
22
### Prerequisites
23
-
-[AgentIQ](https://github.com/NVIDIA/AgentIQ) installed and configured
23
+
-[AIQToolKit](https://github.com/NVIDIA/AIQToolKit) installed and configured
24
24
- Git
25
25
- Node.js (v18 or higher)
26
26
- npm or Docker
@@ -29,8 +29,8 @@ This project builds upon the work of:
29
29
30
30
Clone the repository:
31
31
```bash
32
-
git clone git@github.com:NVIDIA/AgentIQ-UI.git
33
-
cdAgentIQ-UI
32
+
git clone git@github.com:NVIDIA/AIQToolKit-UI.git
33
+
cdAIQToolKit-UI
34
34
```
35
35
36
36
Install dependencies:
@@ -49,22 +49,22 @@ The application will be available at `http://localhost:3000`
49
49
#### Docker Deployment
50
50
```bash
51
51
# Build the Docker image
52
-
docker build -t agentiq-ui.
52
+
docker build -t AIQToolKit-UI.
53
53
54
54
# Run the container with environment variables from .env
55
55
# Ensure the .env file is present before running this command.
56
56
# Skip --env-file .env if no overrides are needed.
57
-
docker run --env-file .env -p 3000:3000 agentiq-ui
57
+
docker run --env-file .env -p 3000:3000 AIQToolKit-UI
58
58
```
59
59
60
-

60
+

61
61
62
62
## Configuration
63
63
64
64
### HTTP API Connection
65
65
Settings can be configured by selecting the `Settings` icon located on the bottom left corner of the home page.
66
66
67
-

67
+

68
68
69
69
### Settings Options
70
70
NOTE: Most of the time, you will want to select /chat/stream for intermediate results streaming.
@@ -75,16 +75,16 @@ NOTE: Most of the time, you will want to select /chat/stream for intermediate re
Enable WebSocket mode in the settings panel for bidirectional real-time communication between the client and server.
111
111
112
-

112
+

113
113
114
114
#### Example Conversation
115
115
1. Send the following prompt:
@@ -119,16 +119,16 @@ Can you process my input and display the result for the given prompt: How are yo
119
119
120
120
2. Enter your response when prompted:
121
121
122
-

122
+

123
123
124
124
3. Monitor the result:
125
125
126
-

126
+

127
127
128
128
## API Integration
129
129
130
130
### Server Communication
131
-
The UI supports both HTTP requests (OpenAI compatible) and WebSocket connections for server communication. For detailed information about WebSocket messaging integration, please refer to the [WebSocket Documentation](https://github.com/NVIDIA/AgentIQ/blob/main/docs/5_advanced/websockets.md) in the AgentIQ documentation.
131
+
The UI supports both HTTP requests (OpenAI compatible) and WebSocket connections for server communication. For detailed information about WebSocket messaging integration, please refer to the [WebSocket Documentation](https://github.com/NVIDIA/AIQToolKit/blob/main/docs/5_advanced/websockets.md) in the AIQToolKit documentation.
0 commit comments