langextract-rust 0.5.0

A Rust library for extracting structured and grounded information from text using LLMs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Progress tracking functionality.

/// Placeholder for progress tracking functionality
pub struct ProgressTracker;

impl ProgressTracker {
    /// Create a new progress tracker
    pub fn new() -> Self {
        Self
    }
}

impl Default for ProgressTracker {
    fn default() -> Self {
        Self::new()
    }
}