Quickstart
Giskard Hub is our enterprise platform for LLM agent testing with team collaboration and continuous red teaming. The Hub provides a comprehensive user interface for performing LLM evaluations in production environments with enterprise-grade security and collaboration features.
The Hub is the user interface from which you can perform LLM evaluations. It implements the following 4-step workflow:

High-level workflow
Section titled âHigh-level workflowâgraph LR
B[<a href="/hub/ui/scan" target="_self">Red Team Scan</a>] --> D[<a href="/hub/ui/datasets" target="_self">Create Test Cases</a>]
D --> F[<a href="/hub/ui/annotate" target="_self">Annotate & Assign Checks</a>]
F --> G[<a href="/hub/ui/evaluations" target="_self">Run Evaluations</a>]
G --> H[<a href="/hub/ui/evaluations" target="_self">Review Results</a>]
H --> F
H --> B
The dashboard
Section titled âThe dashboardâThe Dashboard is the first page youâll see upon logging in. It provides an overview of your project, displaying the number of agents, datasets, evaluations, and knowledge bases.
It also features a graph showing the agentâs performance over time, measured by the average success rate of the evaluations. The success rate is calculated based on some evaluation metrics, such as Conformity, Correctness, Groundedness, String Matching, Metadata, Semantic Similarity, and more. Weâll delve into these metrics in more detail in the Evaluations section.
Additionally, the dashboard lists your most recent evaluations and datasets for quick access.

Create a project
Section titled âCreate a projectâIn this section, you will learn how to create a project.
First, click on the âSettingsâ icon on the left panel, this page allows you to manage your projects and users (if you have the proper access rights).
In the Projects tab, click on âCreate projectâ button. A modal will appear where you can enter your projectâs name and description.

Once the project is created, you can access its dashboard by clicking on it in the list. Alternatively, use the dropdown menu in the upper left corner of the screen to select the project you want to work on.
Setup an agent
Section titled âSetup an agentâThis section guides you through creating a new agent.
On the Agents page, click on the âNew agentâ button.

The interface below displays the agent details that need to be filled out.

Name: The name of the agent.Description: Used to refine automatic evaluation and generation for better accuracy in your specific use case.Supported Languages: Add the languages your agent can handle. Note that this affects data generation.Connection Settings:Agent API Endpoint: The URL of your agentâs API endpoint. This is where requests are sent to interact with your agent.Headers: These are useful for authentication and other custom headers
The endpoint should expect an object with the following structure:
{ "messages": [ { "role": "user", "content": "Hello!" }, { "role": "assistant", "content": "Hello! How can I help you?" }, { "role": "user", "content": "What color is an orange?" } ]}The endpointâs response should have the following structure:
{ "response": { "role": "assistant", "content": "An orange is green" }, "metadata": { "some_key": "whatever value" }}Import a knowledge base
Section titled âImport a knowledge baseâThis section guides you through importing your custom knowledge base.
On the Knowledge Bases, click on âAdd Knowledge Baseâ button.

The interface below displays the knowledge base details that need to be filled out.

Name: The name of the knowledge base.File: The document to upload, containing the knowledge base content. Supported formats are:- JSON: A JSON file containing an array of objects
- JSONL: A JSON Lines file with one object per line
JSON/JSONL format requirements:
Each object in your JSON or JSONL file should have the following structure:
{ "text": "Your document content here", "topic": "Optional topic classification"}text(required): The document contenttopic(optional): The topic classification for the document
General rules for all formats:
- If the
texthas a value but thetopicis blank, thetopicwill be set to âOthersâ. However, if all topics are blank, thetopicwill be automatically generated. - If both the
textandtopicare blank, or if thetextis blank but thetopichas a value, the entry will not be imported.
The interface below displays information about the knowledge base and its content with corresponding topics. As mentioned above, if no topics were uploaded with the knowledge base, Giskard Hub will also identify and generate them for you. In the example below, the knowledge base is ready to be used with over 1200 documents and 7 topics.

Need help?
Section titled âNeed help?â- Documentation: Browse the Hub UI guides for step-by-step walkthroughs
- Community: Join our Discord â for support and discussions
- Enterprise: Need on-premise deployment or dedicated support? Contact us â
- Free trial: Not using Giskard Hub yet? Request your enterprise trial