--- headline: Annotation Queues | Opik Documentation og:description: Optimize your AI projects by enabling SMEs to efficiently review and annotate outputs using Opik's intuitive Annotation Queues feature. og:site_name: Opik Documentation og:title: Streamline Annotation Queues with Opik subtitle: Enable subject matter experts to review and annotate agent outputs with easy queues, invitations, and a clean annotation UI title: Annotation Queues canonical-url: https://www.comet.com/docs/opik/evaluation/advanced/annotation_queues --- Involving subject matter experts in AI projects is essential because they provide the domain knowledge and contextual judgment that ensures model outputs are accurate, relevant, and aligned with real-world expectations. Annotation Queues in Opik make it simple for subject matter experts (SMEs) to review and annotate agent outputs. This feature streamlines the human-in-the-loop process by providing easy queue management, simple invitation flows, and a distraction-free annotation experience designed for non-technical users. ![SME Annotation Flow](/img/evaluation/sme_flow_annotating.gif) Annotation Queues are collections of traces or threads that need human review and feedback. They enable you to organize content for review, share with SMEs easily, collect structured feedback, and track progress across all your evaluation workflows. ## Creating and Managing Annotation Queues Each annotation queue is defined by a collection of traces or threads, evaluation instructions, and feedback definitions: 1. **Queue Configuration**: Set up the queue with clear instructions and scope 2. **Content Selection**: Add traces or threads that need human review 3. **SME Access**: Share queue links with subject matter experts for annotation ### Setting Up Your First Queue Navigate to the **Annotation Queues** page in your project and click **Create Queue**. Configure your queue with: - **Name**: Clear identification for your queue - **Scope**: Choose between traces or threads - **Instructions**: Provide context and guidance for reviewers - **Feedback Definitions**: Select the metrics SMEs will use for scoring ### Adding Content to Your Queue You can add items to your queue in several ways: **From Traces/Threads Lists:** - Select one or multiple items - Click **Add to -> Add to annotation queue** - Choose an existing queue or create a new one **From Individual Trace/Thread Details:** - Open the trace or thread detail view - Click **Add to -> Add to annotation queue** in the actions panel - Select your target queue ### Sharing with Subject Matter Experts Once your queue is set up, you can share it with SMEs: **Copy Queue Link:** **SME Access Required**: Subject matter experts must be invited to your workspace before they can access annotation queues. Make sure to invite them to your project first, then share the queue link. - Click the **Share queue** button on your queue to copy the queue link - Share the link directly with SMEs via email, Slack, or other communication tools ## SME Annotation Experience When SMEs access a queue, they experience a streamlined, distraction-free interface designed for efficient review. The annotation workflow begins with clear instructions and context, allowing SMEs to understand what they're evaluating and how to provide meaningful feedback. The SME interface provides: 1. **Clean, focused design**: No technical jargon or complex navigation 2. **Clear instructions**: Queue-specific guidance displayed prominently 3. **Structured feedback**: Predefined metrics with clear descriptions 4. **Progress tracking**: Visual indicators of completion status 5. **Comment system**: Optional text feedback for additional context ### Annotation Workflow 1. **Access the queue**: SME clicks the shared link 2. **Review content**: Examine the trace or thread output 3. **Provide feedback**: Score using predefined metrics 4. **Add comments**: Optional text feedback 5. **Submit and continue**: Move to the next item ## Managing Queues programmatically You can create and manage annotation queues programmatically using the Python or TypeScript SDK. This is useful for automating the process of adding items to queues based on specific criteria. ### Creating an Annotation Queue ### Creating a Traces Annotation Queue ```python import opik client = opik.Opik() # Create a traces annotation queue queue = client.create_traces_annotation_queue( name="High Priority Traces", description="Traces that need review", instructions="Check for accuracy and completeness", feedback_definition_names=["relevance", "accuracy"] ) print(f"Created queue: {queue.name} (ID: {queue.id})") ``` ```typescript import { Opik } from "opik"; const client = new Opik(); // Create a trace annotation queue const queue = await client.createTracesAnnotationQueue({ name: "High Priority Traces", description: "Traces that need review", instructions: "Check for accuracy and completeness", feedbackDefinitionNames: ["relevance", "accuracy"], }); console.log(`Created queue: ${queue.name} (ID: ${queue.id})`); ``` ### Adding Traces to a Queue ```python import opik client = opik.Opik() # Get an existing traces queue queue = client.get_traces_annotation_queue("queue-id") # Search for traces and add them to the queue traces = client.search_traces( project_name="my-project", filter_string='feedback_scores.user_frustration > 0.5' ) queue.add_traces(traces) # For a single trace, wrap it in a list single_trace = client.get_trace_content("trace-id") queue.add_traces([single_trace]) ``` ```typescript import { Opik } from "opik"; const client = new Opik(); // Get an existing traces queue const queue = await client.getTracesAnnotationQueue("queue-id"); // Search for traces and add them to the queue const traces = await client.searchTraces({ projectName: "my-project", filterString: 'feedback_scores.user_frustration > 0.5', }); await queue.addTraces(traces); // For a single trace, wrap it in an array const singleTraceResponse = await client.api.traces.getTraceById("trace-id"); await queue.addTraces([singleTraceResponse.data]); ``` ### Working with Thread Queues ```python import opik client = opik.Opik() # Create a threads annotation queue thread_queue = client.create_threads_annotation_queue( name="Thread Review Queue", description="Threads needing review" ) # Get threads and add them to the queue threads_client = client.get_threads_client() important_threads = threads_client.search_threads( project_name="my-project", filter_string='tags contains "important"' ) thread_queue.add_threads(important_threads) ``` ```typescript import { Opik } from "opik"; const client = new Opik(); // Create a thread annotation queue const threadQueue = await client.createThreadsAnnotationQueue({ name: "Thread Review Queue", description: "Threads needing review", }); // Search for threads and add them to the queue const threads = await client.searchThreads({ projectName: "my-project", filterString: 'tags contains "important"', }); await threadQueue.addThreads(threads); ``` ### Updating and Deleting Queues ```python import opik client = opik.Opik() # Get an existing traces queue queue = client.get_traces_annotation_queue("queue-id") # Update queue properties queue.update( description="Traces that need a thorough review", instructions="Check the conversation tone" ) # Remove traces from the queue short_traces = client.search_traces( project_name="my-project", filter_string='duration < 10' ) queue.remove_traces(short_traces) # Delete the queue queue.delete() ``` ### Listing Annotation Queues ```python import opik client = opik.Opik() # Get all traces annotation queues for a project traces_queues = client.get_traces_annotation_queues(project_name="my-project") for queue in traces_queues: print(f"Traces Queue: {queue.name}, Items: {queue.items_count}") # Get all threads annotation queues for a project threads_queues = client.get_threads_annotation_queues(project_name="my-project") for queue in threads_queues: print(f"Threads Queue: {queue.name}, Items: {queue.items_count}") ``` ```typescript import { Opik } from "opik"; const client = new Opik(); // Get an existing traces queue const queue = await client.getTracesAnnotationQueue("queue-id"); // Update queue properties await queue.update({ description: "Traces that need a thorough review", instructions: "Check the conversation tone", }); // Remove traces from the queue const shortTraces = await client.searchTraces({ projectName: "my-project", filterString: "duration < 10", }); await queue.removeTraces(shortTraces); // Delete the queue await queue.delete(); ``` ### Listing Annotation Queues ```python import opik client = opik.Opik() # Get all traces annotation queues for a project traces_queues = client.get_traces_annotation_queues(project_name="my-project") for queue in traces_queues: print(f"Traces Queue: {queue.name}, Items: {queue.items_count}") # Get all threads annotation queues for a project threads_queues = client.get_threads_annotation_queues(project_name="my-project") for queue in threads_queues: print(f"Threads Queue: {queue.name}, Items: {queue.items_count}") ``` ```typescript import { Opik } from "opik"; const client = new Opik(); // Get all traces annotation queues for a project const tracesQueues = await client.getTracesAnnotationQueues({ projectName: "my-project", }); for (const queue of tracesQueues) { const itemsCount = await queue.getItemsCount(); console.log( `Queue: ${queue.name}, Scope: ${queue.scope}, Items: ${itemsCount}` ); } // Get all threads annotation queues for a project const threadsQueues = await client.getThreadsAnnotationQueues({ projectName: "my-project", }); for (const queue of threadsQueues) { const itemsCount = await queue.getItemsCount(); console.log( `Queue: ${queue.name}, Scope: ${queue.scope}, Items: ${itemsCount}` ); } ``` ## Learn more You can learn more about Opik's annotation and evaluation features in: 1. [Evaluation overview](/v1/evaluation/overview) 2. [Feedback definitions](/v1/administration/workspace-settings/feedback_definitions)