From 4a0eac0fade49cea15840889cf76dacc6d2138fa Mon Sep 17 00:00:00 2001
From: Agam More API Documentation
Configuration
29 raw_response: Optional[str] = None # Raw text response (None for failed jobs)
30 parsed_response: Optional[Union[BaseModel, Dict]] = None # Structured output or error dict
31 citations: Optional[List[Citation]] = None # Extracted citations
- 32 citation_mappings: Optional[Dict[str, List[Citation]]] = None # Field -> citations mapping
+ 32 citation_mappings: Optional[Dict[str, List[Citation]]] = None # Field -> citation mappings with confidence
33 input_tokens: int = 0
34 output_tokens: int = 0
35 cost_usd: float = 0.0
@@ -3700,74 +3706,78 @@ Configuration
63 if self.citation_mappings:
64 citation_mappings = {
65 field: [{
- 66 'text': c.text,
- 67 'source': c.source,
- 68 'page': c.page,
- 69 'metadata': c.metadata
- 70 } for c in citations]
- 71 for field, citations in self.citation_mappings.items()
- 72 }
- 73
- 74 return {
- 75 "job_id": self.job_id,
- 76 "raw_response": self.raw_response,
- 77 "parsed_response": parsed_response,
- 78 "citations": [{
- 79 'text': c.text,
- 80 'source': c.source,
- 81 'page': c.page,
- 82 'metadata': c.metadata
- 83 } for c in self.citations] if self.citations else None,
- 84 "citation_mappings": citation_mappings,
- 85 "input_tokens": self.input_tokens,
- 86 "output_tokens": self.output_tokens,
- 87 "cost_usd": self.cost_usd,
- 88 "error": self.error,
- 89 "batch_id": self.batch_id
- 90 }
- 91
- 92 def save_to_json(self, filepath: str, indent: int = 2) -> None:
- 93 """Save JobResult to JSON file.
- 94
- 95 Args:
- 96 filepath: Path to save the JSON file
- 97 indent: JSON indentation (default: 2)
- 98 """
- 99 import json
-100 from pathlib import Path
-101
-102 Path(filepath).parent.mkdir(parents=True, exist_ok=True)
-103 with open(filepath, 'w') as f:
-104 json.dump(self.to_dict(), f, indent=indent)
-105
-106 @classmethod
-107 def from_dict(cls, data: Dict[str, Any]) -> 'JobResult':
-108 """Deserialize from state."""
-109 # Reconstruct citations if present
-110 citations = None
-111 if data.get("citations"):
-112 citations = [Citation(**c) for c in data["citations"]]
-113
-114 # Reconstruct citation_mappings if present
-115 citation_mappings = None
-116 if data.get("citation_mappings"):
-117 citation_mappings = {
-118 field: [Citation(**c) for c in citations]
-119 for field, citations in data["citation_mappings"].items()
-120 }
-121
-122 return cls(
-123 job_id=data["job_id"],
-124 raw_response=data["raw_response"],
-125 parsed_response=data.get("parsed_response"),
-126 citations=citations,
-127 citation_mappings=citation_mappings,
-128 input_tokens=data.get("input_tokens", 0),
-129 output_tokens=data.get("output_tokens", 0),
-130 cost_usd=data.get("cost_usd", 0.0),
-131 error=data.get("error"),
-132 batch_id=data.get("batch_id")
-133 )
+ 66 'text': citation.text,
+ 67 'source': citation.source,
+ 68 'page': citation.page,
+ 69 'metadata': citation.metadata,
+ 70 'confidence': citation.confidence,
+ 71 'match_reason': citation.match_reason
+ 72 } for citation in citations]
+ 73 for field, citations in self.citation_mappings.items()
+ 74 }
+ 75
+ 76 return {
+ 77 "job_id": self.job_id,
+ 78 "raw_response": self.raw_response,
+ 79 "parsed_response": parsed_response,
+ 80 "citations": [{
+ 81 'text': c.text,
+ 82 'source': c.source,
+ 83 'page': c.page,
+ 84 'metadata': c.metadata,
+ 85 'confidence': c.confidence,
+ 86 'match_reason': c.match_reason
+ 87 } for c in self.citations] if self.citations else None,
+ 88 "citation_mappings": citation_mappings,
+ 89 "input_tokens": self.input_tokens,
+ 90 "output_tokens": self.output_tokens,
+ 91 "cost_usd": self.cost_usd,
+ 92 "error": self.error,
+ 93 "batch_id": self.batch_id
+ 94 }
+ 95
+ 96 def save_to_json(self, filepath: str, indent: int = 2) -> None:
+ 97 """Save JobResult to JSON file.
+ 98
+ 99 Args:
+100 filepath: Path to save the JSON file
+101 indent: JSON indentation (default: 2)
+102 """
+103 import json
+104 from pathlib import Path
+105
+106 Path(filepath).parent.mkdir(parents=True, exist_ok=True)
+107 with open(filepath, 'w') as f:
+108 json.dump(self.to_dict(), f, indent=indent)
+109
+110 @classmethod
+111 def from_dict(cls, data: Dict[str, Any]) -> 'JobResult':
+112 """Deserialize from state."""
+113 # Reconstruct citations if present
+114 citations = None
+115 if data.get("citations"):
+116 citations = [Citation(**c) for c in data["citations"]]
+117
+118 # Reconstruct citation_mappings if present
+119 citation_mappings = None
+120 if data.get("citation_mappings"):
+121 citation_mappings = {
+122 field: [Citation(**c) for c in citations]
+123 for field, citations in data["citation_mappings"].items()
+124 }
+125
+126 return cls(
+127 job_id=data["job_id"],
+128 raw_response=data["raw_response"],
+129 parsed_response=data.get("parsed_response"),
+130 citations=citations,
+131 citation_mappings=citation_mappings,
+132 input_tokens=data.get("input_tokens", 0),
+133 output_tokens=data.get("output_tokens", 0),
+134 cost_usd=data.get("cost_usd", 0.0),
+135 error=data.get("error"),
+136 batch_id=data.get("batch_id")
+137 )
@@ -3988,31 +3998,35 @@ Configuration
63 if self.citation_mappings:
64 citation_mappings = {
65 field: [{
-66 'text': c.text,
-67 'source': c.source,
-68 'page': c.page,
-69 'metadata': c.metadata
-70 } for c in citations]
-71 for field, citations in self.citation_mappings.items()
-72 }
-73
-74 return {
-75 "job_id": self.job_id,
-76 "raw_response": self.raw_response,
-77 "parsed_response": parsed_response,
-78 "citations": [{
-79 'text': c.text,
-80 'source': c.source,
-81 'page': c.page,
-82 'metadata': c.metadata
-83 } for c in self.citations] if self.citations else None,
-84 "citation_mappings": citation_mappings,
-85 "input_tokens": self.input_tokens,
-86 "output_tokens": self.output_tokens,
-87 "cost_usd": self.cost_usd,
-88 "error": self.error,
-89 "batch_id": self.batch_id
-90 }
+66 'text': citation.text,
+67 'source': citation.source,
+68 'page': citation.page,
+69 'metadata': citation.metadata,
+70 'confidence': citation.confidence,
+71 'match_reason': citation.match_reason
+72 } for citation in citations]
+73 for field, citations in self.citation_mappings.items()
+74 }
+75
+76 return {
+77 "job_id": self.job_id,
+78 "raw_response": self.raw_response,
+79 "parsed_response": parsed_response,
+80 "citations": [{
+81 'text': c.text,
+82 'source': c.source,
+83 'page': c.page,
+84 'metadata': c.metadata,
+85 'confidence': c.confidence,
+86 'match_reason': c.match_reason
+87 } for c in self.citations] if self.citations else None,
+88 "citation_mappings": citation_mappings,
+89 "input_tokens": self.input_tokens,
+90 "output_tokens": self.output_tokens,
+91 "cost_usd": self.cost_usd,
+92 "error": self.error,
+93 "batch_id": self.batch_id
+94 }
@@ -4032,19 +4046,19 @@ Configuration
- 92 def save_to_json(self, filepath: str, indent: int = 2) -> None:
- 93 """Save JobResult to JSON file.
- 94
- 95 Args:
- 96 filepath: Path to save the JSON file
- 97 indent: JSON indentation (default: 2)
- 98 """
- 99 import json
-100 from pathlib import Path
-101
-102 Path(filepath).parent.mkdir(parents=True, exist_ok=True)
-103 with open(filepath, 'w') as f:
-104 json.dump(self.to_dict(), f, indent=indent)
+
96 def save_to_json(self, filepath: str, indent: int = 2) -> None:
+ 97 """Save JobResult to JSON file.
+ 98
+ 99 Args:
+100 filepath: Path to save the JSON file
+101 indent: JSON indentation (default: 2)
+102 """
+103 import json
+104 from pathlib import Path
+105
+106 Path(filepath).parent.mkdir(parents=True, exist_ok=True)
+107 with open(filepath, 'w') as f:
+108 json.dump(self.to_dict(), f, indent=indent)
Configuration
106 @classmethod
-107 def from_dict(cls, data: Dict[str, Any]) -> 'JobResult':
-108 """Deserialize from state."""
-109 # Reconstruct citations if present
-110 citations = None
-111 if data.get("citations"):
-112 citations = [Citation(**c) for c in data["citations"]]
-113
-114 # Reconstruct citation_mappings if present
-115 citation_mappings = None
-116 if data.get("citation_mappings"):
-117 citation_mappings = {
-118 field: [Citation(**c) for c in citations]
-119 for field, citations in data["citation_mappings"].items()
-120 }
-121
-122 return cls(
-123 job_id=data["job_id"],
-124 raw_response=data["raw_response"],
-125 parsed_response=data.get("parsed_response"),
-126 citations=citations,
-127 citation_mappings=citation_mappings,
-128 input_tokens=data.get("input_tokens", 0),
-129 output_tokens=data.get("output_tokens", 0),
-130 cost_usd=data.get("cost_usd", 0.0),
-131 error=data.get("error"),
-132 batch_id=data.get("batch_id")
-133 )
+
110 @classmethod
+111 def from_dict(cls, data: Dict[str, Any]) -> 'JobResult':
+112 """Deserialize from state."""
+113 # Reconstruct citations if present
+114 citations = None
+115 if data.get("citations"):
+116 citations = [Citation(**c) for c in data["citations"]]
+117
+118 # Reconstruct citation_mappings if present
+119 citation_mappings = None
+120 if data.get("citation_mappings"):
+121 citation_mappings = {
+122 field: [Citation(**c) for c in citations]
+123 for field, citations in data["citation_mappings"].items()
+124 }
+125
+126 return cls(
+127 job_id=data["job_id"],
+128 raw_response=data["raw_response"],
+129 parsed_response=data.get("parsed_response"),
+130 citations=citations,
+131 citation_mappings=citation_mappings,
+132 input_tokens=data.get("input_tokens", 0),
+133 output_tokens=data.get("output_tokens", 0),
+134 cost_usd=data.get("cost_usd", 0.0),
+135 error=data.get("error"),
+136 batch_id=data.get("batch_id")
+137 )
Configuration
13 source: str # Source identifier (e.g., page number, section)
14 page: Optional[int] = None # Page number if applicable
15 metadata: Optional[Dict[str, Any]] = None # Additional metadata
+16 # Field mapping confidence (added for systematic citation mapping)
+17 confidence: Optional[str] = None # "high", "medium", "low" - None for unmapped citations
+18 match_reason: Optional[str] = None # Description of why field was mapped
Configuration
Configuration
+
Why AI-batching?
\n\nAI providers offer batch APIs that process requests asynchronously at 50% reduced cost compared to real-time APIs. \nThis is ideal for workloads like document processing, data analysis, and content generation where immediate \nresponses aren't required.
\n\npip install batchata\n\nfrom batchata import Batch\n\n# Simple batch processing\nbatch = Batch(results_dir="./output")\n .set_default_params(model="claude-sonnet-4-20250514")\n .add_cost_limit(usd=5.0)\n\n# Add jobs\nfor file in files:\n batch.add_job(file=file, prompt="Summarize this document")\n\n# Execute\nrun = batch.run()\nresults = run.results()\n\nfrom batchata import Batch\nfrom pydantic import BaseModel\n\nclass DocumentAnalysis(BaseModel):\n title: str\n summary: str\n key_points: list[str]\n\nbatch = Batch(results_dir="./results")\n .set_default_params(model="claude-sonnet-4-20250514")\n\nbatch.add_job(\n file="document.pdf",\n prompt="Analyze this document",\n response_model=DocumentAnalysis,\n enable_citations=True # Anthropic only\n)\n\nrun = batch.run()\nfor result in run.results()["completed"]:\n analysis = result.parsed_response # DocumentAnalysis object\n citations = result.citation_mappings # Field -> Citation mapping\n\nmax_cost_usd limits for batch requests .add_time_limit()| Feature | \nAnthropic | \nOpenAI | \n
|---|---|---|
| Models | \nAll Claude models | \nAll GPT models | \n
| Citations | \n\u2705 | \n\u274c | \n
| Structured Output | \n\u2705 | \n\u2705 | \n
| File Types | \nPDF, TXT, DOCX, Images | \nPDF, Images | \n
Set API keys as environment variables:
\n\nexport ANTHROPIC_API_KEY="your-key"\nexport OPENAI_API_KEY="your-key"\n\nOr use a .env file with python-dotenv.
Builder for batch job configuration.
\n\nProvides a fluent interface for configuring batch jobs with sensible defaults\nand validation. The batch can be configured with cost limits, default parameters,\nand progress callbacks.
\n\nExample:
\n\n\nbatch = Batch("./results", max_parallel_batches=10, items_per_batch=10)\n .set_state(file="./state.json", reuse_state=True)\n .set_default_params(model="claude-sonnet-4-20250514", temperature=0.7)\n .add_cost_limit(usd=15.0)\n .add_job(messages=[{"role": "user", "content": "Hello"}])\n .add_job(file="./path/to/file.pdf", prompt="Generate summary of file")\n\nrun = batch.run()\n
\n\n\n"}, "batchata.Batch.__init__": {"fullname": "batchata.Batch.__init__", "modulename": "batchata", "qualname": "Batch.__init__", "kind": "function", "doc": "Initialize batch configuration.
\n\nArgs:\n results_dir: Directory to store results\n max_parallel_batches: Maximum parallel batch requests\n items_per_batch: Number of jobs per provider batch\n raw_files: Whether to save debug files (raw responses, JSONL files) from providers (default: True if results_dir is set, False otherwise)
\n", "signature": "(\tresults_dir: str,\tmax_parallel_batches: int = 10,\titems_per_batch: int = 10,\traw_files: Optional[bool] = None)"}, "batchata.Batch.config": {"fullname": "batchata.Batch.config", "modulename": "batchata", "qualname": "Batch.config", "kind": "variable", "doc": "\n"}, "batchata.Batch.jobs": {"fullname": "batchata.Batch.jobs", "modulename": "batchata", "qualname": "Batch.jobs", "kind": "variable", "doc": "\n", "annotation": ": List[batchata.core.job.Job]"}, "batchata.Batch.set_default_params": {"fullname": "batchata.Batch.set_default_params", "modulename": "batchata", "qualname": "Batch.set_default_params", "kind": "function", "doc": "Set default parameters for all jobs.
\n\nThese defaults will be applied to all jobs unless overridden\nby job-specific parameters.
\n\nArgs:\n **kwargs: Default parameters (model, temperature, max_tokens, etc.)
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.set_default_params(model="claude-3-sonnet", temperature=0.7)\n
\n\n\n", "signature": "(self, **kwargs) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.set_state": {"fullname": "batchata.Batch.set_state", "modulename": "batchata", "qualname": "Batch.set_state", "kind": "function", "doc": "Set state file configuration.
\n\nArgs:\n file: Path to state file for persistence (default: None)\n reuse_state: Whether to resume from existing state file (default: True)
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.set_state(file="./state.json", reuse_state=True)\n
\n\n\n", "signature": "(\tself,\tfile: Optional[str] = None,\treuse_state: bool = True) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.add_cost_limit": {"fullname": "batchata.Batch.add_cost_limit", "modulename": "batchata", "qualname": "Batch.add_cost_limit", "kind": "function", "doc": "Add cost limit for the batch.
\n\nThe batch will stop accepting new jobs once the cost limit is reached.\nActive jobs will be allowed to complete.
\n\nArgs:\n usd: Cost limit in USD
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.add_cost_limit(usd=50.0)\n
\n\n\n", "signature": "(self, usd: float) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.raw_files": {"fullname": "batchata.Batch.raw_files", "modulename": "batchata", "qualname": "Batch.raw_files", "kind": "function", "doc": "Enable or disable saving debug files from providers.
\n\nWhen enabled, debug files (raw API responses, JSONL files) will be saved\nin a 'raw_files' subdirectory within the results directory.\nThis is useful for debugging, auditing, or accessing provider-specific metadata.
\n\nArgs:\n enabled: Whether to save debug files (default: True)
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.raw_files(True)\n
\n\n\n", "signature": "(self, enabled: bool = True) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.set_verbosity": {"fullname": "batchata.Batch.set_verbosity", "modulename": "batchata", "qualname": "Batch.set_verbosity", "kind": "function", "doc": "Set logging verbosity level.
\n\nArgs:\n level: Verbosity level (\"debug\", \"info\", \"warn\", \"error\")
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.set_verbosity("error") # For production\nbatch.set_verbosity("debug") # For debugging\n
\n\n\n", "signature": "(self, level: str) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.add_time_limit": {"fullname": "batchata.Batch.add_time_limit", "modulename": "batchata", "qualname": "Batch.add_time_limit", "kind": "function", "doc": "Add time limit for the entire batch execution.
\n\nWhen time limit is reached, all active provider batches are cancelled and \nremaining unprocessed jobs are marked as failed. The batch execution \ncompletes normally without throwing exceptions.
\n\nArgs:\n seconds: Time limit in seconds (optional)\n minutes: Time limit in minutes (optional)\n hours: Time limit in hours (optional)
\n\nReturns:\n Self for chaining
\n\nRaises:\n ValueError: If no time units specified, or if total time is outside \n valid range (min: 10 seconds, max: 24 hours)
\n\nNote:\n - Can combine multiple time units\n - Time limit is checked every second by a background watchdog thread\n - Jobs that exceed time limit appear in results()[\"failed\"] with time limit error message\n - No exceptions are thrown when time limit is reached
\n\nExample:
\n\n\nbatch.add_time_limit(seconds=30) # 30 seconds\nbatch.add_time_limit(minutes=5) # 5 minutes\nbatch.add_time_limit(hours=2) # 2 hours\nbatch.add_time_limit(hours=1, minutes=30, seconds=15) # 5415 seconds total\n
\n\n\n", "signature": "(\tself,\tseconds: Optional[float] = None,\tminutes: Optional[float] = None,\thours: Optional[float] = None) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.add_job": {"fullname": "batchata.Batch.add_job", "modulename": "batchata", "qualname": "Batch.add_job", "kind": "function", "doc": "Add a job to the batch.
\n\nEither provide messages OR file+prompt, not both. Parameters not provided\nwill use the defaults set via the defaults() method.
\n\nArgs:\n messages: Chat messages for direct input\n file: File path for file-based input\n prompt: Prompt to use with file input\n model: Model to use (overrides default)\n temperature: Sampling temperature (overrides default)\n max_tokens: Max tokens to generate (overrides default)\n response_model: Pydantic model for structured output\n enable_citations: Whether to extract citations\n **kwargs: Additional parameters
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.add_job(\n messages=[{"role": "user", "content": "Hello"}],\n model="gpt-4"\n)\n
\n\n\n", "signature": "(\tself,\tmessages: Optional[List[Dict[str, Any]]] = None,\tfile: Union[str, pathlib.Path, NoneType] = None,\tprompt: Optional[str] = None,\tmodel: Optional[str] = None,\ttemperature: Optional[float] = None,\tmax_tokens: Optional[int] = None,\tresponse_model: Optional[Type[pydantic.main.BaseModel]] = None,\tenable_citations: bool = False,\t**kwargs) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.run": {"fullname": "batchata.Batch.run", "modulename": "batchata", "qualname": "Batch.run", "kind": "function", "doc": "Execute the batch.
\n\nCreates a BatchRun instance and executes the jobs synchronously.
\n\nArgs:\n on_progress: Optional progress callback function that receives\n (stats_dict, elapsed_time_seconds, batch_data)\n progress_interval: Interval in seconds between progress updates (default: 1.0)\n print_status: Whether to show rich progress display (default: False)\n dry_run: If True, only show cost estimation without executing (default: False)
\n\nReturns:\n BatchRun instance with completed results
\n\nRaises:\n ValueError: If no jobs have been added
\n", "signature": "(\tself,\ton_progress: Optional[Callable[[Dict, float, Dict], NoneType]] = None,\tprogress_interval: float = 1.0,\tprint_status: bool = False,\tdry_run: bool = False) -> batchata.core.batch_run.BatchRun:", "funcdef": "def"}, "batchata.BatchRun": {"fullname": "batchata.BatchRun", "modulename": "batchata", "qualname": "BatchRun", "kind": "class", "doc": "Manages the execution of a batch job synchronously.
\n\nProcesses jobs in batches based on items_per_batch configuration.\nSimpler synchronous execution for clear logging and debugging.
\n\nExample:
\n\n\nconfig = BatchParams(...)\nrun = BatchRun(config, jobs)\nrun.execute()\nresults = run.results()\n
\n\n\n"}, "batchata.BatchRun.__init__": {"fullname": "batchata.BatchRun.__init__", "modulename": "batchata", "qualname": "BatchRun.__init__", "kind": "function", "doc": "Initialize batch run.
\n\nArgs:\n config: Batch configuration\n jobs: List of jobs to execute
\n", "signature": "(\tconfig: batchata.core.batch_params.BatchParams,\tjobs: List[batchata.core.job.Job])"}, "batchata.BatchRun.config": {"fullname": "batchata.BatchRun.config", "modulename": "batchata", "qualname": "BatchRun.config", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.jobs": {"fullname": "batchata.BatchRun.jobs", "modulename": "batchata", "qualname": "BatchRun.jobs", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.cost_tracker": {"fullname": "batchata.BatchRun.cost_tracker", "modulename": "batchata", "qualname": "BatchRun.cost_tracker", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.state_manager": {"fullname": "batchata.BatchRun.state_manager", "modulename": "batchata", "qualname": "BatchRun.state_manager", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.pending_jobs": {"fullname": "batchata.BatchRun.pending_jobs", "modulename": "batchata", "qualname": "BatchRun.pending_jobs", "kind": "variable", "doc": "\n", "annotation": ": List[batchata.core.job.Job]"}, "batchata.BatchRun.completed_results": {"fullname": "batchata.BatchRun.completed_results", "modulename": "batchata", "qualname": "BatchRun.completed_results", "kind": "variable", "doc": "\n", "annotation": ": Dict[str, batchata.core.job_result.JobResult]"}, "batchata.BatchRun.failed_jobs": {"fullname": "batchata.BatchRun.failed_jobs", "modulename": "batchata", "qualname": "BatchRun.failed_jobs", "kind": "variable", "doc": "\n", "annotation": ": Dict[str, str]"}, "batchata.BatchRun.cancelled_jobs": {"fullname": "batchata.BatchRun.cancelled_jobs", "modulename": "batchata", "qualname": "BatchRun.cancelled_jobs", "kind": "variable", "doc": "\n", "annotation": ": Dict[str, str]"}, "batchata.BatchRun.total_batches": {"fullname": "batchata.BatchRun.total_batches", "modulename": "batchata", "qualname": "BatchRun.total_batches", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.completed_batches": {"fullname": "batchata.BatchRun.completed_batches", "modulename": "batchata", "qualname": "BatchRun.completed_batches", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.current_batch_index": {"fullname": "batchata.BatchRun.current_batch_index", "modulename": "batchata", "qualname": "BatchRun.current_batch_index", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.current_batch_size": {"fullname": "batchata.BatchRun.current_batch_size", "modulename": "batchata", "qualname": "BatchRun.current_batch_size", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.batch_tracking": {"fullname": "batchata.BatchRun.batch_tracking", "modulename": "batchata", "qualname": "BatchRun.batch_tracking", "kind": "variable", "doc": "\n", "annotation": ": Dict[str, Dict]"}, "batchata.BatchRun.results_dir": {"fullname": "batchata.BatchRun.results_dir", "modulename": "batchata", "qualname": "BatchRun.results_dir", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.raw_files_dir": {"fullname": "batchata.BatchRun.raw_files_dir", "modulename": "batchata", "qualname": "BatchRun.raw_files_dir", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.to_json": {"fullname": "batchata.BatchRun.to_json", "modulename": "batchata", "qualname": "BatchRun.to_json", "kind": "function", "doc": "Convert current state to JSON-serializable dict.
\n", "signature": "(self) -> Dict:", "funcdef": "def"}, "batchata.BatchRun.execute": {"fullname": "batchata.BatchRun.execute", "modulename": "batchata", "qualname": "BatchRun.execute", "kind": "function", "doc": "Execute synchronous batch run and wait for completion.
\n", "signature": "(self):", "funcdef": "def"}, "batchata.BatchRun.set_on_progress": {"fullname": "batchata.BatchRun.set_on_progress", "modulename": "batchata", "qualname": "BatchRun.set_on_progress", "kind": "function", "doc": "Set progress callback for execution monitoring.
\n\nThe callback will be called periodically with progress statistics\nincluding completed jobs, total jobs, current cost, etc.
\n\nArgs:\n callback: Function that receives (stats_dict, elapsed_time_seconds, batch_data)\n - stats_dict: Progress statistics dictionary\n - elapsed_time_seconds: Time elapsed since batch started (float)\n - batch_data: Dictionary mapping batch_id to batch information\n interval: Interval in seconds between progress updates (default: 1.0)
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nrun.set_on_progress(\n lambda stats, time, batch_data: print(\n f"Progress: {stats['completed']}/{stats['total']}, {time:.1f}s"\n )\n)\n
\n\n\n", "signature": "(\tself,\tcallback: Callable[[Dict, float, Dict], NoneType],\tinterval: float = 1.0) -> batchata.core.batch_run.BatchRun:", "funcdef": "def"}, "batchata.BatchRun.is_complete": {"fullname": "batchata.BatchRun.is_complete", "modulename": "batchata", "qualname": "BatchRun.is_complete", "kind": "variable", "doc": "Whether all jobs are complete.
\n", "annotation": ": bool"}, "batchata.BatchRun.status": {"fullname": "batchata.BatchRun.status", "modulename": "batchata", "qualname": "BatchRun.status", "kind": "function", "doc": "Get current execution statistics.
\n", "signature": "(self, print_status: bool = False) -> Dict:", "funcdef": "def"}, "batchata.BatchRun.results": {"fullname": "batchata.BatchRun.results", "modulename": "batchata", "qualname": "BatchRun.results", "kind": "function", "doc": "Get all results organized by status.
\n\nReturns:\n {\n \"completed\": [JobResult],\n \"failed\": [JobResult],\n \"cancelled\": [JobResult]\n }
\n", "signature": "(self) -> Dict[str, List[batchata.core.job_result.JobResult]]:", "funcdef": "def"}, "batchata.BatchRun.get_failed_jobs": {"fullname": "batchata.BatchRun.get_failed_jobs", "modulename": "batchata", "qualname": "BatchRun.get_failed_jobs", "kind": "function", "doc": "Get failed jobs with error messages.
\n\nNote: This method is deprecated. Use results()['failed'] instead.
\n", "signature": "(self) -> Dict[str, str]:", "funcdef": "def"}, "batchata.BatchRun.shutdown": {"fullname": "batchata.BatchRun.shutdown", "modulename": "batchata", "qualname": "BatchRun.shutdown", "kind": "function", "doc": "Shutdown (no-op for synchronous execution).
\n", "signature": "(self):", "funcdef": "def"}, "batchata.BatchRun.dry_run": {"fullname": "batchata.BatchRun.dry_run", "modulename": "batchata", "qualname": "BatchRun.dry_run", "kind": "function", "doc": "Perform a dry run - show cost estimation and job details without executing.
\n\nReturns:\n Self for chaining (doesn't actually execute jobs)
\n", "signature": "(self) -> batchata.core.batch_run.BatchRun:", "funcdef": "def"}, "batchata.Job": {"fullname": "batchata.Job", "modulename": "batchata", "qualname": "Job", "kind": "class", "doc": "Configuration for a single AI job.
\n\nEither provide messages OR prompt (with optional file), not both.
\n\nAttributes:\n id: Unique identifier for the job\n messages: Chat messages for direct message input\n file: Optional file path for file-based input\n prompt: Prompt text (can be used alone or with file)\n model: Model name (e.g., \"claude-3-sonnet\")\n temperature: Sampling temperature (0.0-1.0)\n max_tokens: Maximum tokens to generate\n response_model: Pydantic model for structured output\n enable_citations: Whether to extract citations from response
\n"}, "batchata.Job.__init__": {"fullname": "batchata.Job.__init__", "modulename": "batchata", "qualname": "Job.__init__", "kind": "function", "doc": "\n", "signature": "(\tid: str,\tmodel: str,\tmessages: Optional[List[Dict[str, Any]]] = None,\tfile: Optional[pathlib.Path] = None,\tprompt: Optional[str] = None,\ttemperature: float = 0.7,\tmax_tokens: int = 1000,\tresponse_model: Optional[Type[pydantic.main.BaseModel]] = None,\tenable_citations: bool = False)"}, "batchata.Job.id": {"fullname": "batchata.Job.id", "modulename": "batchata", "qualname": "Job.id", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.Job.model": {"fullname": "batchata.Job.model", "modulename": "batchata", "qualname": "Job.model", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.Job.messages": {"fullname": "batchata.Job.messages", "modulename": "batchata", "qualname": "Job.messages", "kind": "variable", "doc": "\n", "annotation": ": Optional[List[Dict[str, Any]]]", "default_value": "None"}, "batchata.Job.file": {"fullname": "batchata.Job.file", "modulename": "batchata", "qualname": "Job.file", "kind": "variable", "doc": "\n", "annotation": ": Optional[pathlib.Path]", "default_value": "None"}, "batchata.Job.prompt": {"fullname": "batchata.Job.prompt", "modulename": "batchata", "qualname": "Job.prompt", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.Job.temperature": {"fullname": "batchata.Job.temperature", "modulename": "batchata", "qualname": "Job.temperature", "kind": "variable", "doc": "\n", "annotation": ": float", "default_value": "0.7"}, "batchata.Job.max_tokens": {"fullname": "batchata.Job.max_tokens", "modulename": "batchata", "qualname": "Job.max_tokens", "kind": "variable", "doc": "\n", "annotation": ": int", "default_value": "1000"}, "batchata.Job.response_model": {"fullname": "batchata.Job.response_model", "modulename": "batchata", "qualname": "Job.response_model", "kind": "variable", "doc": "\n", "annotation": ": Optional[Type[pydantic.main.BaseModel]]", "default_value": "None"}, "batchata.Job.enable_citations": {"fullname": "batchata.Job.enable_citations", "modulename": "batchata", "qualname": "Job.enable_citations", "kind": "variable", "doc": "\n", "annotation": ": bool", "default_value": "False"}, "batchata.Job.to_dict": {"fullname": "batchata.Job.to_dict", "modulename": "batchata", "qualname": "Job.to_dict", "kind": "function", "doc": "Serialize for state persistence.
\n", "signature": "(self) -> Dict[str, Any]:", "funcdef": "def"}, "batchata.Job.from_dict": {"fullname": "batchata.Job.from_dict", "modulename": "batchata", "qualname": "Job.from_dict", "kind": "function", "doc": "Deserialize from state.
\n", "signature": "(cls, data: Dict[str, Any]) -> batchata.core.job.Job:", "funcdef": "def"}, "batchata.JobResult": {"fullname": "batchata.JobResult", "modulename": "batchata", "qualname": "JobResult", "kind": "class", "doc": "Result from a completed AI job.
\n\nAttributes:\n job_id: ID of the job this result is for\n raw_response: Raw text response from the model (None for failed jobs)\n parsed_response: Structured output (if response_model was used)\n citations: Extracted citations (if enable_citations was True)\n citation_mappings: Maps field names to relevant citations (if response_model used)\n input_tokens: Number of input tokens used\n output_tokens: Number of output tokens generated\n cost_usd: Total cost in USD\n error: Error message if job failed\n batch_id: ID of the batch this job was part of (for mapping to raw files)
\n"}, "batchata.JobResult.__init__": {"fullname": "batchata.JobResult.__init__", "modulename": "batchata", "qualname": "JobResult.__init__", "kind": "function", "doc": "\n", "signature": "(\tjob_id: str,\traw_response: Optional[str] = None,\tparsed_response: Union[pydantic.main.BaseModel, Dict, NoneType] = None,\tcitations: Optional[List[batchata.types.Citation]] = None,\tcitation_mappings: Optional[Dict[str, List[batchata.types.Citation]]] = None,\tinput_tokens: int = 0,\toutput_tokens: int = 0,\tcost_usd: float = 0.0,\terror: Optional[str] = None,\tbatch_id: Optional[str] = None)"}, "batchata.JobResult.job_id": {"fullname": "batchata.JobResult.job_id", "modulename": "batchata", "qualname": "JobResult.job_id", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.JobResult.raw_response": {"fullname": "batchata.JobResult.raw_response", "modulename": "batchata", "qualname": "JobResult.raw_response", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.JobResult.parsed_response": {"fullname": "batchata.JobResult.parsed_response", "modulename": "batchata", "qualname": "JobResult.parsed_response", "kind": "variable", "doc": "\n", "annotation": ": Union[pydantic.main.BaseModel, Dict, NoneType]", "default_value": "None"}, "batchata.JobResult.citations": {"fullname": "batchata.JobResult.citations", "modulename": "batchata", "qualname": "JobResult.citations", "kind": "variable", "doc": "\n", "annotation": ": Optional[List[batchata.types.Citation]]", "default_value": "None"}, "batchata.JobResult.citation_mappings": {"fullname": "batchata.JobResult.citation_mappings", "modulename": "batchata", "qualname": "JobResult.citation_mappings", "kind": "variable", "doc": "\n", "annotation": ": Optional[Dict[str, List[batchata.types.Citation]]]", "default_value": "None"}, "batchata.JobResult.input_tokens": {"fullname": "batchata.JobResult.input_tokens", "modulename": "batchata", "qualname": "JobResult.input_tokens", "kind": "variable", "doc": "\n", "annotation": ": int", "default_value": "0"}, "batchata.JobResult.output_tokens": {"fullname": "batchata.JobResult.output_tokens", "modulename": "batchata", "qualname": "JobResult.output_tokens", "kind": "variable", "doc": "\n", "annotation": ": int", "default_value": "0"}, "batchata.JobResult.cost_usd": {"fullname": "batchata.JobResult.cost_usd", "modulename": "batchata", "qualname": "JobResult.cost_usd", "kind": "variable", "doc": "\n", "annotation": ": float", "default_value": "0.0"}, "batchata.JobResult.error": {"fullname": "batchata.JobResult.error", "modulename": "batchata", "qualname": "JobResult.error", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.JobResult.batch_id": {"fullname": "batchata.JobResult.batch_id", "modulename": "batchata", "qualname": "JobResult.batch_id", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.JobResult.is_success": {"fullname": "batchata.JobResult.is_success", "modulename": "batchata", "qualname": "JobResult.is_success", "kind": "variable", "doc": "Whether the job completed successfully.
\n", "annotation": ": bool"}, "batchata.JobResult.total_tokens": {"fullname": "batchata.JobResult.total_tokens", "modulename": "batchata", "qualname": "JobResult.total_tokens", "kind": "variable", "doc": "Total tokens used (input + output).
\n", "annotation": ": int"}, "batchata.JobResult.to_dict": {"fullname": "batchata.JobResult.to_dict", "modulename": "batchata", "qualname": "JobResult.to_dict", "kind": "function", "doc": "Serialize for state persistence.
\n", "signature": "(self) -> Dict[str, Any]:", "funcdef": "def"}, "batchata.JobResult.save_to_json": {"fullname": "batchata.JobResult.save_to_json", "modulename": "batchata", "qualname": "JobResult.save_to_json", "kind": "function", "doc": "Save JobResult to JSON file.
\n\nArgs:\n filepath: Path to save the JSON file\n indent: JSON indentation (default: 2)
\n", "signature": "(self, filepath: str, indent: int = 2) -> None:", "funcdef": "def"}, "batchata.JobResult.from_dict": {"fullname": "batchata.JobResult.from_dict", "modulename": "batchata", "qualname": "JobResult.from_dict", "kind": "function", "doc": "Deserialize from state.
\n", "signature": "(cls, data: Dict[str, Any]) -> batchata.core.job_result.JobResult:", "funcdef": "def"}, "batchata.Citation": {"fullname": "batchata.Citation", "modulename": "batchata", "qualname": "Citation", "kind": "class", "doc": "Represents a citation extracted from an AI response.
\n"}, "batchata.Citation.__init__": {"fullname": "batchata.Citation.__init__", "modulename": "batchata", "qualname": "Citation.__init__", "kind": "function", "doc": "\n", "signature": "(\ttext: str,\tsource: str,\tpage: Optional[int] = None,\tmetadata: Optional[Dict[str, Any]] = None)"}, "batchata.Citation.text": {"fullname": "batchata.Citation.text", "modulename": "batchata", "qualname": "Citation.text", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.Citation.source": {"fullname": "batchata.Citation.source", "modulename": "batchata", "qualname": "Citation.source", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.Citation.page": {"fullname": "batchata.Citation.page", "modulename": "batchata", "qualname": "Citation.page", "kind": "variable", "doc": "\n", "annotation": ": Optional[int]", "default_value": "None"}, "batchata.Citation.metadata": {"fullname": "batchata.Citation.metadata", "modulename": "batchata", "qualname": "Citation.metadata", "kind": "variable", "doc": "\n", "annotation": ": Optional[Dict[str, Any]]", "default_value": "None"}, "batchata.BatchataError": {"fullname": "batchata.BatchataError", "modulename": "batchata", "qualname": "BatchataError", "kind": "class", "doc": "Base exception for all Batchata errors.
\n", "bases": "builtins.Exception"}, "batchata.CostLimitExceededError": {"fullname": "batchata.CostLimitExceededError", "modulename": "batchata", "qualname": "CostLimitExceededError", "kind": "class", "doc": "Raised when cost limit would be exceeded.
\n", "bases": "batchata.exceptions.BatchataError"}, "batchata.ProviderError": {"fullname": "batchata.ProviderError", "modulename": "batchata", "qualname": "ProviderError", "kind": "class", "doc": "Base exception for provider-related errors.
\n", "bases": "batchata.exceptions.BatchataError"}, "batchata.ProviderNotFoundError": {"fullname": "batchata.ProviderNotFoundError", "modulename": "batchata", "qualname": "ProviderNotFoundError", "kind": "class", "doc": "Raised when no provider is found for a model.
\n", "bases": "batchata.exceptions.ProviderError"}, "batchata.ValidationError": {"fullname": "batchata.ValidationError", "modulename": "batchata", "qualname": "ValidationError", "kind": "class", "doc": "Raised when job or configuration validation fails.
\n", "bases": "batchata.exceptions.BatchataError"}}, "docInfo": {"batchata": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 894}, "batchata.Batch": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 318}, "batchata.Batch.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 54}, "batchata.Batch.config": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Batch.jobs": {"qualname": 2, "fullname": 3, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Batch.set_default_params": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 104}, "batchata.Batch.set_state": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 95}, "batchata.Batch.add_cost_limit": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 89}, "batchata.Batch.raw_files": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 100}, "batchata.Batch.set_verbosity": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 95}, "batchata.Batch.add_time_limit": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 102, "bases": 0, "doc": 291}, "batchata.Batch.add_job": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 272, "bases": 0, "doc": 188}, "batchata.Batch.run": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 136, "bases": 0, "doc": 88}, "batchata.BatchRun": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 123}, "batchata.BatchRun.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 18}, "batchata.BatchRun.config": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.jobs": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.cost_tracker": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.state_manager": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.pending_jobs": {"qualname": 3, "fullname": 4, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.completed_results": {"qualname": 3, "fullname": 4, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.failed_jobs": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.cancelled_jobs": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.total_batches": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.completed_batches": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.current_batch_index": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.current_batch_size": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.batch_tracking": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.results_dir": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.raw_files_dir": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.to_json": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 10}, "batchata.BatchRun.execute": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "batchata.BatchRun.set_on_progress": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 210}, "batchata.BatchRun.is_complete": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "batchata.BatchRun.status": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 7}, "batchata.BatchRun.results": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 23}, "batchata.BatchRun.get_failed_jobs": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 23}, "batchata.BatchRun.shutdown": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "batchata.BatchRun.dry_run": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 27}, "batchata.Job": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 92}, "batchata.Job.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 213, "bases": 0, "doc": 3}, "batchata.Job.id": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.model": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.messages": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.file": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.prompt": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.temperature": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.max_tokens": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.response_model": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.enable_citations": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.to_dict": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 7}, "batchata.Job.from_dict": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 6}, "batchata.JobResult": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 106}, "batchata.JobResult.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 282, "bases": 0, "doc": 3}, "batchata.JobResult.job_id": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.raw_response": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.parsed_response": {"qualname": 3, "fullname": 4, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.citations": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.citation_mappings": {"qualname": 3, "fullname": 4, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.input_tokens": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.output_tokens": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.cost_usd": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.error": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.batch_id": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.is_success": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "batchata.JobResult.total_tokens": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "batchata.JobResult.to_dict": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 7}, "batchata.JobResult.save_to_json": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 24}, "batchata.JobResult.from_dict": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 6}, "batchata.Citation": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "batchata.Citation.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 84, "bases": 0, "doc": 3}, "batchata.Citation.text": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Citation.source": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Citation.page": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Citation.metadata": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchataError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "batchata.CostLimitExceededError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "batchata.ProviderError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "batchata.ProviderNotFoundError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "batchata.ValidationError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}}, "length": 80, "save": true}, "index": {"qualname": {"root": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 5, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.config": {"tf": 1}, "batchata.Batch.jobs": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 16, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchataError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"batchata.BatchRun.current_batch_index": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.input_tokens": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 2}, "d": {"docs": {"batchata.Job.id": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.config": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}}, "df": 1, "d": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.cancelled_jobs": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.Citation": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}}, "df": 7, "s": {"docs": {"batchata.Job.enable_citations": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}}, "df": 2}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.temperature": {"tf": 1}, "batchata.Job.max_tokens": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}}, "df": 15, "s": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 6}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 17}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.status": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.current_batch_size": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.shutdown": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.is_success": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.source": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.parsed_response": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.page": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.pending_jobs": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.prompt": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderError": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderNotFoundError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.file": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ValidationError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.cost_tracker": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.batch_tracking": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.BatchRun.total_batches": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 2}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.max_tokens": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.temperature": {"tf": 1}}, "df": 1}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Citation.text": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.state_manager": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {"batchata.Job.max_tokens": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Job.model": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.messages": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Citation.metadata": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.execute": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.enable_citations": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.JobResult.error": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.output_tokens": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.cost_usd": {"tf": 1}}, "df": 1}}}}}, "fullname": {"root": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 5, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.config": {"tf": 1}, "batchata.Batch.jobs": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 16, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.config": {"tf": 1}, "batchata.Batch.jobs": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.temperature": {"tf": 1}, "batchata.Job.max_tokens": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}, "batchata.BatchataError": {"tf": 1}, "batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 80, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchataError": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"batchata.BatchRun.current_batch_index": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.input_tokens": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 2}, "d": {"docs": {"batchata.Job.id": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.config": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}}, "df": 1, "d": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.cancelled_jobs": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.Citation": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}}, "df": 7, "s": {"docs": {"batchata.Job.enable_citations": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}}, "df": 2}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.temperature": {"tf": 1}, "batchata.Job.max_tokens": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}}, "df": 15, "s": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 6}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 17}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.status": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.current_batch_size": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.shutdown": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.is_success": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.source": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.parsed_response": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.page": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.pending_jobs": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.prompt": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderError": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderNotFoundError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.file": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ValidationError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.cost_tracker": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.batch_tracking": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.BatchRun.total_batches": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 2}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.max_tokens": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.temperature": {"tf": 1}}, "df": 1}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Citation.text": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.state_manager": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {"batchata.Job.max_tokens": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Job.model": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.messages": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Citation.metadata": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.execute": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.enable_citations": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.JobResult.error": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.output_tokens": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.cost_usd": {"tf": 1}}, "df": 1}}}}}, "annotation": {"root": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.temperature": {"tf": 1}, "batchata.Job.max_tokens": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}}, "df": 32, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 2}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Batch.jobs": {"tf": 1.4142135623730951}, "batchata.BatchRun.pending_jobs": {"tf": 1.4142135623730951}, "batchata.BatchRun.completed_results": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 2, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}}, "df": 4}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}}, "df": 7}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Job.messages": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.JobResult.citations": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Job.file": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Job.prompt": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 4}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata.Job.response_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Citation.page": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Job.messages": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Job.file": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.temperature": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.max_tokens": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata.JobResult.parsed_response": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"batchata.JobResult.parsed_response": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 2}}}}}}}, "default_value": {"root": {"0": {"docs": {"batchata.Job.temperature": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1.4142135623730951}}, "df": 4}, "1": {"0": {"0": {"0": {"docs": {"batchata.Job.max_tokens": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"docs": {"batchata.Job.temperature": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}}, "df": 12}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.enable_citations": {"tf": 1}}, "df": 1}}}}}}}, "signature": {"root": {"0": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 2}}, "df": 4}, "1": {"0": {"0": {"0": {"docs": {"batchata.Job.__init__": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"batchata.Batch.__init__": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}, "2": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}, "7": {"docs": {"batchata.Job.__init__": {"tf": 1}}, "df": 1}, "docs": {"batchata.Batch.__init__": {"tf": 7.937253933193772}, "batchata.Batch.set_default_params": {"tf": 5.477225575051661}, "batchata.Batch.set_state": {"tf": 7.745966692414834}, "batchata.Batch.add_cost_limit": {"tf": 5.656854249492381}, "batchata.Batch.raw_files": {"tf": 6.164414002968976}, "batchata.Batch.set_verbosity": {"tf": 5.656854249492381}, "batchata.Batch.add_time_limit": {"tf": 9.219544457292887}, "batchata.Batch.add_job": {"tf": 14.933184523068078}, "batchata.Batch.run": {"tf": 10.392304845413264}, "batchata.BatchRun.__init__": {"tf": 7.14142842854285}, "batchata.BatchRun.to_json": {"tf": 3.4641016151377544}, "batchata.BatchRun.execute": {"tf": 3.1622776601683795}, "batchata.BatchRun.set_on_progress": {"tf": 8.306623862918075}, "batchata.BatchRun.status": {"tf": 5.0990195135927845}, "batchata.BatchRun.results": {"tf": 6.082762530298219}, "batchata.BatchRun.get_failed_jobs": {"tf": 4.69041575982343}, "batchata.BatchRun.shutdown": {"tf": 3.1622776601683795}, "batchata.BatchRun.dry_run": {"tf": 4.898979485566356}, "batchata.Job.__init__": {"tf": 13.152946437965905}, "batchata.Job.to_dict": {"tf": 4.69041575982343}, "batchata.Job.from_dict": {"tf": 6.48074069840786}, "batchata.JobResult.__init__": {"tf": 15.033296378372908}, "batchata.JobResult.to_dict": {"tf": 4.69041575982343}, "batchata.JobResult.save_to_json": {"tf": 5.830951894845301}, "batchata.JobResult.from_dict": {"tf": 6.48074069840786}, "batchata.Citation.__init__": {"tf": 8.366600265340756}}, "df": 26, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.results": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 3}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 14}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_job": {"tf": 2}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1.4142135623730951}, "batchata.Job.__init__": {"tf": 2}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 2.23606797749979}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1.7320508075688772}}, "df": 14}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 19}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1.4142135623730951}, "batchata.Batch.set_verbosity": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 15}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 3}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.status": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.__init__": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 2}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.status": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 2.449489742783178}, "batchata.Batch.run": {"tf": 1}, "batchata.Job.__init__": {"tf": 2}, "batchata.JobResult.__init__": {"tf": 2.23606797749979}, "batchata.Citation.__init__": {"tf": 1.4142135623730951}}, "df": 8}}}}}}}, "n": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 2.6457513110645907}, "batchata.Batch.run": {"tf": 1}, "batchata.Job.__init__": {"tf": 2}, "batchata.JobResult.__init__": {"tf": 2.449489742783178}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1.4142135623730951}}, "df": 9, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 4}}}}}}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 14}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.__init__": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.__init__": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2, "d": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 5}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 7}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.results": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1.4142135623730951}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 5, "s": {"docs": {"batchata.BatchRun.__init__": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.results": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchataError": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchataError": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 4}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderNotFoundError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1.7320508075688772}}, "df": 7}, "1": {"0": {"docs": {"batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}, "5": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}, "docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 4, "f": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}, "2": {"0": {"2": {"5": {"0": {"5": {"1": {"4": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}, "docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 2}, "3": {"0": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}}, "df": 1}, "9": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 2}}, "df": 1}, "docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}, "4": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 3}, "5": {"0": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 2}, "4": {"1": {"5": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"batchata": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}}, "df": 2}, "7": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}}, "df": 2}, "docs": {"batchata": {"tf": 23.979157616563597}, "batchata.Batch": {"tf": 14.560219778561036}, "batchata.Batch.__init__": {"tf": 2.449489742783178}, "batchata.Batch.config": {"tf": 1.7320508075688772}, "batchata.Batch.jobs": {"tf": 1.7320508075688772}, "batchata.Batch.set_default_params": {"tf": 7.54983443527075}, "batchata.Batch.set_state": {"tf": 7.3484692283495345}, "batchata.Batch.add_cost_limit": {"tf": 6.708203932499369}, "batchata.Batch.raw_files": {"tf": 6.48074069840786}, "batchata.Batch.set_verbosity": {"tf": 7.874007874011811}, "batchata.Batch.add_time_limit": {"tf": 11.575836902790225}, "batchata.Batch.add_job": {"tf": 9}, "batchata.Batch.run": {"tf": 3.605551275463989}, "batchata.BatchRun": {"tf": 9.219544457292887}, "batchata.BatchRun.__init__": {"tf": 2.23606797749979}, "batchata.BatchRun.config": {"tf": 1.7320508075688772}, "batchata.BatchRun.jobs": {"tf": 1.7320508075688772}, "batchata.BatchRun.cost_tracker": {"tf": 1.7320508075688772}, "batchata.BatchRun.state_manager": {"tf": 1.7320508075688772}, "batchata.BatchRun.pending_jobs": {"tf": 1.7320508075688772}, "batchata.BatchRun.completed_results": {"tf": 1.7320508075688772}, "batchata.BatchRun.failed_jobs": {"tf": 1.7320508075688772}, "batchata.BatchRun.cancelled_jobs": {"tf": 1.7320508075688772}, "batchata.BatchRun.total_batches": {"tf": 1.7320508075688772}, "batchata.BatchRun.completed_batches": {"tf": 1.7320508075688772}, "batchata.BatchRun.current_batch_index": {"tf": 1.7320508075688772}, "batchata.BatchRun.current_batch_size": {"tf": 1.7320508075688772}, "batchata.BatchRun.batch_tracking": {"tf": 1.7320508075688772}, "batchata.BatchRun.results_dir": {"tf": 1.7320508075688772}, "batchata.BatchRun.raw_files_dir": {"tf": 1.7320508075688772}, "batchata.BatchRun.to_json": {"tf": 1.7320508075688772}, "batchata.BatchRun.execute": {"tf": 1.7320508075688772}, "batchata.BatchRun.set_on_progress": {"tf": 10.583005244258363}, "batchata.BatchRun.is_complete": {"tf": 1.7320508075688772}, "batchata.BatchRun.status": {"tf": 1.7320508075688772}, "batchata.BatchRun.results": {"tf": 3.1622776601683795}, "batchata.BatchRun.get_failed_jobs": {"tf": 2.8284271247461903}, "batchata.BatchRun.shutdown": {"tf": 1.7320508075688772}, "batchata.BatchRun.dry_run": {"tf": 2.449489742783178}, "batchata.Job": {"tf": 2.8284271247461903}, "batchata.Job.__init__": {"tf": 1.7320508075688772}, "batchata.Job.id": {"tf": 1.7320508075688772}, "batchata.Job.model": {"tf": 1.7320508075688772}, "batchata.Job.messages": {"tf": 1.7320508075688772}, "batchata.Job.file": {"tf": 1.7320508075688772}, "batchata.Job.prompt": {"tf": 1.7320508075688772}, "batchata.Job.temperature": {"tf": 1.7320508075688772}, "batchata.Job.max_tokens": {"tf": 1.7320508075688772}, "batchata.Job.response_model": {"tf": 1.7320508075688772}, "batchata.Job.enable_citations": {"tf": 1.7320508075688772}, "batchata.Job.to_dict": {"tf": 1.7320508075688772}, "batchata.Job.from_dict": {"tf": 1.7320508075688772}, "batchata.JobResult": {"tf": 2.449489742783178}, "batchata.JobResult.__init__": {"tf": 1.7320508075688772}, "batchata.JobResult.job_id": {"tf": 1.7320508075688772}, "batchata.JobResult.raw_response": {"tf": 1.7320508075688772}, "batchata.JobResult.parsed_response": {"tf": 1.7320508075688772}, "batchata.JobResult.citations": {"tf": 1.7320508075688772}, "batchata.JobResult.citation_mappings": {"tf": 1.7320508075688772}, "batchata.JobResult.input_tokens": {"tf": 1.7320508075688772}, "batchata.JobResult.output_tokens": {"tf": 1.7320508075688772}, "batchata.JobResult.cost_usd": {"tf": 1.7320508075688772}, "batchata.JobResult.error": {"tf": 1.7320508075688772}, "batchata.JobResult.batch_id": {"tf": 1.7320508075688772}, "batchata.JobResult.is_success": {"tf": 1.7320508075688772}, "batchata.JobResult.total_tokens": {"tf": 2}, "batchata.JobResult.to_dict": {"tf": 1.7320508075688772}, "batchata.JobResult.save_to_json": {"tf": 2.449489742783178}, "batchata.JobResult.from_dict": {"tf": 1.7320508075688772}, "batchata.Citation": {"tf": 1.7320508075688772}, "batchata.Citation.__init__": {"tf": 1.7320508075688772}, "batchata.Citation.text": {"tf": 1.7320508075688772}, "batchata.Citation.source": {"tf": 1.7320508075688772}, "batchata.Citation.page": {"tf": 1.7320508075688772}, "batchata.Citation.metadata": {"tf": 1.7320508075688772}, "batchata.BatchataError": {"tf": 1.7320508075688772}, "batchata.CostLimitExceededError": {"tf": 1.7320508075688772}, "batchata.ProviderError": {"tf": 1.7320508075688772}, "batchata.ProviderNotFoundError": {"tf": 1.7320508075688772}, "batchata.ValidationError": {"tf": 1.7320508075688772}}, "df": 80, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata": {"tf": 3.872983346207417}, "batchata.Batch": {"tf": 2.6457513110645907}, "batchata.Batch.__init__": {"tf": 2}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 2.449489742783178}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 2.449489742783178}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 16, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata": {"tf": 2}, "batchata.BatchataError": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 5}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "e": {"docs": {"batchata.BatchataError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "d": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.CostLimitExceededError": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}}, "df": 1}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1.7320508075688772}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 4}, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.7320508075688772}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 3, "r": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 3}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata": {"tf": 2}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}}, "df": 3}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}}, "t": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 4, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2, "r": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 6, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 3}}, "s": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}, "d": {"docs": {"batchata.Batch.add_job": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1.7320508075688772}}, "df": 4}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.run": {"tf": 2.23606797749979}, "batchata.BatchRun.set_on_progress": {"tf": 2.449489742783178}}, "df": 3}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "f": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}}, "df": 4}}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.Citation": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 12, "p": {"docs": {}, "df": 0, "i": {"docs": {"batchata": {"tf": 2}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.Citation": {"tf": 1}}, "df": 4}, "n": {"docs": {"batchata.Citation": {"tf": 1}}, "df": 1, "d": {"docs": {"batchata": {"tf": 2}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 7}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata": {"tf": 2.23606797749979}}, "df": 1}}}}}}}}, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.BatchRun.is_complete": {"tf": 1}}, "df": 2, "n": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 12}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 2.23606797749979}, "batchata.Batch": {"tf": 1.7320508075688772}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 2.23606797749979}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}}, "df": 5, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_job": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchataError": {"tf": 1}}, "df": 6, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata": {"tf": 2.23606797749979}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1.4142135623730951}, "batchata.Batch.set_verbosity": {"tf": 1.7320508075688772}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 2}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job": {"tf": 2.23606797749979}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.BatchataError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 21}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"batchata.ProviderNotFoundError": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation": {"tf": 1}}, "df": 9}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 2.449489742783178}, "batchata.Batch": {"tf": 1.7320508075688772}, "batchata.Batch.set_state": {"tf": 2.23606797749979}, "batchata.Batch.add_job": {"tf": 2}, "batchata.Job": {"tf": 2.23606797749979}, "batchata.JobResult.save_to_json": {"tf": 1.4142135623730951}}, "df": 6, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 2.449489742783178}, "batchata.JobResult": {"tf": 1}}, "df": 4}, "+": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 4}}, "s": {"docs": {"batchata.ValidationError": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2.23606797749979}, "batchata.Citation": {"tf": 1}}, "df": 5, "s": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"batchata": {"tf": 2.449489742783178}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 9}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 11}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.ProviderError": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Citation": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 2.449489742783178}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1.7320508075688772}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 8}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.__init__": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1.7320508075688772}, "batchata.JobResult": {"tf": 1.7320508075688772}}, "df": 3}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}}, "df": 2}, "d": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata": {"tf": 2.23606797749979}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 5}}}, "h": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 8}}}}, "n": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.execute": {"tf": 1}}, "df": 1}}, "s": {"docs": {"batchata.JobResult": {"tf": 1.7320508075688772}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 2.449489742783178}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 2}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}, "batchata.CostLimitExceededError": {"tf": 1}}, "df": 8}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}}, "df": 2, "d": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.results": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 6}, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.execute": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 2}, "batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 4}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1}, "batchata.Citation": {"tf": 1}}, "df": 3, "s": {"docs": {"batchata": {"tf": 2.23606797749979}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2}}, "df": 4}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.7320508075688772}}, "df": 2, "s": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 9}}}}}, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {"batchata": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 7}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 4}}, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1.7320508075688772}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 12, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1.4142135623730951}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 2.23606797749979}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1.4142135623730951}, "batchata.JobResult.save_to_json": {"tf": 1.4142135623730951}}, "df": 14, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 5}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 2}, "batchata.Batch.add_time_limit": {"tf": 4}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 2.23606797749979}}, "df": 4}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}}, "df": 6}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 6, "s": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult": {"tf": 1}, "batchata.Citation": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 10}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.set_state": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchataError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 5, "d": {"docs": {"batchata.Batch.raw_files": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "v": {"docs": {"batchata": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"batchata.BatchataError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.JobResult": {"tf": 2.23606797749979}}, "df": 5, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 2}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 5}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.run": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"batchata.BatchRun.shutdown": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.Batch.run": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "r": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.ValidationError": {"tf": 1}}, "df": 6, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.results": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_job": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 2}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 8}, "d": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 2}}, "df": 3, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "n": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 2}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1.7320508075688772}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1.4142135623730951}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 3}}}}, "f": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2}}, "df": 4}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 2}, "batchata.Batch.add_time_limit": {"tf": 3.605551275463989}, "batchata.CostLimitExceededError": {"tf": 1}}, "df": 5, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1.7320508075688772}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 2}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}}}, "x": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.7320508075688772}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.7320508075688772}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.7320508075688772}, "batchata.Batch.run": {"tf": 1.7320508075688772}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 10, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1.7320508075688772}, "batchata.Batch.set_verbosity": {"tf": 1.4142135623730951}}, "df": 3, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 3}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}}}}}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}}, "g": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3, "d": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 3}}, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 4.47213595499958}, "batchata.Batch": {"tf": 4.242640687119285}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.set_verbosity": {"tf": 2}, "batchata.Batch.add_job": {"tf": 3.1622776601683795}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 7}}}}, "s": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1.7320508075688772}, "batchata.Batch.set_state": {"tf": 2.6457513110645907}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 8}, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 2.23606797749979}}, "df": 2}, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.status": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 4}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}, "p": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1, "r": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 2}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.set_verbosity": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 8}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 9}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 2.6457513110645907}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.7320508075688772}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.JobResult.is_success": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1.4142135623730951}}, "df": 3, "d": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.shutdown": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 2.23606797749979}, "batchata.Job": {"tf": 2}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 7, "s": {"docs": {"batchata": {"tf": 2.23606797749979}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"batchata": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 3, "s": {"docs": {"batchata": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}, "x": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 3, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 2}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.Job": {"tf": 1.7320508075688772}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 2.23606797749979}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1.7320508075688772}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2.23606797749979}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 10, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 14}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.results": {"tf": 1.7320508075688772}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1.7320508075688772}}, "df": 4, "l": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 2.449489742783178}}, "df": 1, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "o": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1}}, "df": 2, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.set_verbosity": {"tf": 2}}, "df": 1}}}}}}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 2.449489742783178}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"batchata": {"fullname": "batchata", "modulename": "batchata", "kind": "module", "doc": "Batchata - Unified Python API for AI Batch requests with cost tracking, Pydantic responses, and parallel execution.
\n\nWhy AI-batching?
\n\nAI providers offer batch APIs that process requests asynchronously at 50% reduced cost compared to real-time APIs. \nThis is ideal for workloads like document processing, data analysis, and content generation where immediate \nresponses aren't required.
\n\npip install batchata\n\nfrom batchata import Batch\n\n# Simple batch processing\nbatch = Batch(results_dir="./output")\n .set_default_params(model="claude-sonnet-4-20250514")\n .add_cost_limit(usd=5.0)\n\n# Add jobs\nfor file in files:\n batch.add_job(file=file, prompt="Summarize this document")\n\n# Execute\nrun = batch.run()\nresults = run.results()\n\nfrom batchata import Batch\nfrom pydantic import BaseModel\n\nclass DocumentAnalysis(BaseModel):\n title: str\n summary: str\n key_points: list[str]\n\nbatch = Batch(results_dir="./results")\n .set_default_params(model="claude-sonnet-4-20250514")\n\nbatch.add_job(\n file="document.pdf",\n prompt="Analyze this document",\n response_model=DocumentAnalysis,\n enable_citations=True # Anthropic only\n)\n\nrun = batch.run()\nfor result in run.results()["completed"]:\n analysis = result.parsed_response # DocumentAnalysis object\n citations = result.citation_mappings # Field -> Citation mapping\n\nmax_cost_usd limits for batch requests .add_time_limit()| Feature | \nAnthropic | \nOpenAI | \n
|---|---|---|
| Models | \nAll Claude models | \nAll GPT models | \n
| Citations | \n\u2705 | \n\u274c | \n
| Structured Output | \n\u2705 | \n\u2705 | \n
| File Types | \nPDF, TXT, DOCX, Images | \nPDF, Images | \n
Set API keys as environment variables:
\n\nexport ANTHROPIC_API_KEY="your-key"\nexport OPENAI_API_KEY="your-key"\n\nOr use a .env file with python-dotenv.
Builder for batch job configuration.
\n\nProvides a fluent interface for configuring batch jobs with sensible defaults\nand validation. The batch can be configured with cost limits, default parameters,\nand progress callbacks.
\n\nExample:
\n\n\nbatch = Batch("./results", max_parallel_batches=10, items_per_batch=10)\n .set_state(file="./state.json", reuse_state=True)\n .set_default_params(model="claude-sonnet-4-20250514", temperature=0.7)\n .add_cost_limit(usd=15.0)\n .add_job(messages=[{"role": "user", "content": "Hello"}])\n .add_job(file="./path/to/file.pdf", prompt="Generate summary of file")\n\nrun = batch.run()\n
\n\n\n"}, "batchata.Batch.__init__": {"fullname": "batchata.Batch.__init__", "modulename": "batchata", "qualname": "Batch.__init__", "kind": "function", "doc": "Initialize batch configuration.
\n\nArgs:\n results_dir: Directory to store results\n max_parallel_batches: Maximum parallel batch requests\n items_per_batch: Number of jobs per provider batch\n raw_files: Whether to save debug files (raw responses, JSONL files) from providers (default: True if results_dir is set, False otherwise)
\n", "signature": "(\tresults_dir: str,\tmax_parallel_batches: int = 10,\titems_per_batch: int = 10,\traw_files: Optional[bool] = None)"}, "batchata.Batch.config": {"fullname": "batchata.Batch.config", "modulename": "batchata", "qualname": "Batch.config", "kind": "variable", "doc": "\n"}, "batchata.Batch.jobs": {"fullname": "batchata.Batch.jobs", "modulename": "batchata", "qualname": "Batch.jobs", "kind": "variable", "doc": "\n", "annotation": ": List[batchata.core.job.Job]"}, "batchata.Batch.set_default_params": {"fullname": "batchata.Batch.set_default_params", "modulename": "batchata", "qualname": "Batch.set_default_params", "kind": "function", "doc": "Set default parameters for all jobs.
\n\nThese defaults will be applied to all jobs unless overridden\nby job-specific parameters.
\n\nArgs:\n **kwargs: Default parameters (model, temperature, max_tokens, etc.)
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.set_default_params(model="claude-3-sonnet", temperature=0.7)\n
\n\n\n", "signature": "(self, **kwargs) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.set_state": {"fullname": "batchata.Batch.set_state", "modulename": "batchata", "qualname": "Batch.set_state", "kind": "function", "doc": "Set state file configuration.
\n\nArgs:\n file: Path to state file for persistence (default: None)\n reuse_state: Whether to resume from existing state file (default: True)
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.set_state(file="./state.json", reuse_state=True)\n
\n\n\n", "signature": "(\tself,\tfile: Optional[str] = None,\treuse_state: bool = True) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.add_cost_limit": {"fullname": "batchata.Batch.add_cost_limit", "modulename": "batchata", "qualname": "Batch.add_cost_limit", "kind": "function", "doc": "Add cost limit for the batch.
\n\nThe batch will stop accepting new jobs once the cost limit is reached.\nActive jobs will be allowed to complete.
\n\nArgs:\n usd: Cost limit in USD
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.add_cost_limit(usd=50.0)\n
\n\n\n", "signature": "(self, usd: float) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.raw_files": {"fullname": "batchata.Batch.raw_files", "modulename": "batchata", "qualname": "Batch.raw_files", "kind": "function", "doc": "Enable or disable saving debug files from providers.
\n\nWhen enabled, debug files (raw API responses, JSONL files) will be saved\nin a 'raw_files' subdirectory within the results directory.\nThis is useful for debugging, auditing, or accessing provider-specific metadata.
\n\nArgs:\n enabled: Whether to save debug files (default: True)
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.raw_files(True)\n
\n\n\n", "signature": "(self, enabled: bool = True) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.set_verbosity": {"fullname": "batchata.Batch.set_verbosity", "modulename": "batchata", "qualname": "Batch.set_verbosity", "kind": "function", "doc": "Set logging verbosity level.
\n\nArgs:\n level: Verbosity level (\"debug\", \"info\", \"warn\", \"error\")
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.set_verbosity("error") # For production\nbatch.set_verbosity("debug") # For debugging\n
\n\n\n", "signature": "(self, level: str) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.add_time_limit": {"fullname": "batchata.Batch.add_time_limit", "modulename": "batchata", "qualname": "Batch.add_time_limit", "kind": "function", "doc": "Add time limit for the entire batch execution.
\n\nWhen time limit is reached, all active provider batches are cancelled and \nremaining unprocessed jobs are marked as failed. The batch execution \ncompletes normally without throwing exceptions.
\n\nArgs:\n seconds: Time limit in seconds (optional)\n minutes: Time limit in minutes (optional)\n hours: Time limit in hours (optional)
\n\nReturns:\n Self for chaining
\n\nRaises:\n ValueError: If no time units specified, or if total time is outside \n valid range (min: 10 seconds, max: 24 hours)
\n\nNote:\n - Can combine multiple time units\n - Time limit is checked every second by a background watchdog thread\n - Jobs that exceed time limit appear in results()[\"failed\"] with time limit error message\n - No exceptions are thrown when time limit is reached
\n\nExample:
\n\n\nbatch.add_time_limit(seconds=30) # 30 seconds\nbatch.add_time_limit(minutes=5) # 5 minutes\nbatch.add_time_limit(hours=2) # 2 hours\nbatch.add_time_limit(hours=1, minutes=30, seconds=15) # 5415 seconds total\n
\n\n\n", "signature": "(\tself,\tseconds: Optional[float] = None,\tminutes: Optional[float] = None,\thours: Optional[float] = None) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.add_job": {"fullname": "batchata.Batch.add_job", "modulename": "batchata", "qualname": "Batch.add_job", "kind": "function", "doc": "Add a job to the batch.
\n\nEither provide messages OR file+prompt, not both. Parameters not provided\nwill use the defaults set via the defaults() method.
\n\nArgs:\n messages: Chat messages for direct input\n file: File path for file-based input\n prompt: Prompt to use with file input\n model: Model to use (overrides default)\n temperature: Sampling temperature (overrides default)\n max_tokens: Max tokens to generate (overrides default)\n response_model: Pydantic model for structured output\n enable_citations: Whether to extract citations\n **kwargs: Additional parameters
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nbatch.add_job(\n messages=[{"role": "user", "content": "Hello"}],\n model="gpt-4"\n)\n
\n\n\n", "signature": "(\tself,\tmessages: Optional[List[Dict[str, Any]]] = None,\tfile: Union[str, pathlib.Path, NoneType] = None,\tprompt: Optional[str] = None,\tmodel: Optional[str] = None,\ttemperature: Optional[float] = None,\tmax_tokens: Optional[int] = None,\tresponse_model: Optional[Type[pydantic.main.BaseModel]] = None,\tenable_citations: bool = False,\t**kwargs) -> batchata.core.batch.Batch:", "funcdef": "def"}, "batchata.Batch.run": {"fullname": "batchata.Batch.run", "modulename": "batchata", "qualname": "Batch.run", "kind": "function", "doc": "Execute the batch.
\n\nCreates a BatchRun instance and executes the jobs synchronously.
\n\nArgs:\n on_progress: Optional progress callback function that receives\n (stats_dict, elapsed_time_seconds, batch_data)\n progress_interval: Interval in seconds between progress updates (default: 1.0)\n print_status: Whether to show rich progress display (default: False)\n dry_run: If True, only show cost estimation without executing (default: False)
\n\nReturns:\n BatchRun instance with completed results
\n\nRaises:\n ValueError: If no jobs have been added
\n", "signature": "(\tself,\ton_progress: Optional[Callable[[Dict, float, Dict], NoneType]] = None,\tprogress_interval: float = 1.0,\tprint_status: bool = False,\tdry_run: bool = False) -> batchata.core.batch_run.BatchRun:", "funcdef": "def"}, "batchata.BatchRun": {"fullname": "batchata.BatchRun", "modulename": "batchata", "qualname": "BatchRun", "kind": "class", "doc": "Manages the execution of a batch job synchronously.
\n\nProcesses jobs in batches based on items_per_batch configuration.\nSimpler synchronous execution for clear logging and debugging.
\n\nExample:
\n\n\nconfig = BatchParams(...)\nrun = BatchRun(config, jobs)\nrun.execute()\nresults = run.results()\n
\n\n\n"}, "batchata.BatchRun.__init__": {"fullname": "batchata.BatchRun.__init__", "modulename": "batchata", "qualname": "BatchRun.__init__", "kind": "function", "doc": "Initialize batch run.
\n\nArgs:\n config: Batch configuration\n jobs: List of jobs to execute
\n", "signature": "(\tconfig: batchata.core.batch_params.BatchParams,\tjobs: List[batchata.core.job.Job])"}, "batchata.BatchRun.config": {"fullname": "batchata.BatchRun.config", "modulename": "batchata", "qualname": "BatchRun.config", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.jobs": {"fullname": "batchata.BatchRun.jobs", "modulename": "batchata", "qualname": "BatchRun.jobs", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.cost_tracker": {"fullname": "batchata.BatchRun.cost_tracker", "modulename": "batchata", "qualname": "BatchRun.cost_tracker", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.state_manager": {"fullname": "batchata.BatchRun.state_manager", "modulename": "batchata", "qualname": "BatchRun.state_manager", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.pending_jobs": {"fullname": "batchata.BatchRun.pending_jobs", "modulename": "batchata", "qualname": "BatchRun.pending_jobs", "kind": "variable", "doc": "\n", "annotation": ": List[batchata.core.job.Job]"}, "batchata.BatchRun.completed_results": {"fullname": "batchata.BatchRun.completed_results", "modulename": "batchata", "qualname": "BatchRun.completed_results", "kind": "variable", "doc": "\n", "annotation": ": Dict[str, batchata.core.job_result.JobResult]"}, "batchata.BatchRun.failed_jobs": {"fullname": "batchata.BatchRun.failed_jobs", "modulename": "batchata", "qualname": "BatchRun.failed_jobs", "kind": "variable", "doc": "\n", "annotation": ": Dict[str, str]"}, "batchata.BatchRun.cancelled_jobs": {"fullname": "batchata.BatchRun.cancelled_jobs", "modulename": "batchata", "qualname": "BatchRun.cancelled_jobs", "kind": "variable", "doc": "\n", "annotation": ": Dict[str, str]"}, "batchata.BatchRun.total_batches": {"fullname": "batchata.BatchRun.total_batches", "modulename": "batchata", "qualname": "BatchRun.total_batches", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.completed_batches": {"fullname": "batchata.BatchRun.completed_batches", "modulename": "batchata", "qualname": "BatchRun.completed_batches", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.current_batch_index": {"fullname": "batchata.BatchRun.current_batch_index", "modulename": "batchata", "qualname": "BatchRun.current_batch_index", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.current_batch_size": {"fullname": "batchata.BatchRun.current_batch_size", "modulename": "batchata", "qualname": "BatchRun.current_batch_size", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.batch_tracking": {"fullname": "batchata.BatchRun.batch_tracking", "modulename": "batchata", "qualname": "BatchRun.batch_tracking", "kind": "variable", "doc": "\n", "annotation": ": Dict[str, Dict]"}, "batchata.BatchRun.results_dir": {"fullname": "batchata.BatchRun.results_dir", "modulename": "batchata", "qualname": "BatchRun.results_dir", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.raw_files_dir": {"fullname": "batchata.BatchRun.raw_files_dir", "modulename": "batchata", "qualname": "BatchRun.raw_files_dir", "kind": "variable", "doc": "\n"}, "batchata.BatchRun.to_json": {"fullname": "batchata.BatchRun.to_json", "modulename": "batchata", "qualname": "BatchRun.to_json", "kind": "function", "doc": "Convert current state to JSON-serializable dict.
\n", "signature": "(self) -> Dict:", "funcdef": "def"}, "batchata.BatchRun.execute": {"fullname": "batchata.BatchRun.execute", "modulename": "batchata", "qualname": "BatchRun.execute", "kind": "function", "doc": "Execute synchronous batch run and wait for completion.
\n", "signature": "(self):", "funcdef": "def"}, "batchata.BatchRun.set_on_progress": {"fullname": "batchata.BatchRun.set_on_progress", "modulename": "batchata", "qualname": "BatchRun.set_on_progress", "kind": "function", "doc": "Set progress callback for execution monitoring.
\n\nThe callback will be called periodically with progress statistics\nincluding completed jobs, total jobs, current cost, etc.
\n\nArgs:\n callback: Function that receives (stats_dict, elapsed_time_seconds, batch_data)\n - stats_dict: Progress statistics dictionary\n - elapsed_time_seconds: Time elapsed since batch started (float)\n - batch_data: Dictionary mapping batch_id to batch information\n interval: Interval in seconds between progress updates (default: 1.0)
\n\nReturns:\n Self for chaining
\n\nExample:
\n\n\nrun.set_on_progress(\n lambda stats, time, batch_data: print(\n f"Progress: {stats['completed']}/{stats['total']}, {time:.1f}s"\n )\n)\n
\n\n\n", "signature": "(\tself,\tcallback: Callable[[Dict, float, Dict], NoneType],\tinterval: float = 1.0) -> batchata.core.batch_run.BatchRun:", "funcdef": "def"}, "batchata.BatchRun.is_complete": {"fullname": "batchata.BatchRun.is_complete", "modulename": "batchata", "qualname": "BatchRun.is_complete", "kind": "variable", "doc": "Whether all jobs are complete.
\n", "annotation": ": bool"}, "batchata.BatchRun.status": {"fullname": "batchata.BatchRun.status", "modulename": "batchata", "qualname": "BatchRun.status", "kind": "function", "doc": "Get current execution statistics.
\n", "signature": "(self, print_status: bool = False) -> Dict:", "funcdef": "def"}, "batchata.BatchRun.results": {"fullname": "batchata.BatchRun.results", "modulename": "batchata", "qualname": "BatchRun.results", "kind": "function", "doc": "Get all results organized by status.
\n\nReturns:\n {\n \"completed\": [JobResult],\n \"failed\": [JobResult],\n \"cancelled\": [JobResult]\n }
\n", "signature": "(self) -> Dict[str, List[batchata.core.job_result.JobResult]]:", "funcdef": "def"}, "batchata.BatchRun.get_failed_jobs": {"fullname": "batchata.BatchRun.get_failed_jobs", "modulename": "batchata", "qualname": "BatchRun.get_failed_jobs", "kind": "function", "doc": "Get failed jobs with error messages.
\n\nNote: This method is deprecated. Use results()['failed'] instead.
\n", "signature": "(self) -> Dict[str, str]:", "funcdef": "def"}, "batchata.BatchRun.shutdown": {"fullname": "batchata.BatchRun.shutdown", "modulename": "batchata", "qualname": "BatchRun.shutdown", "kind": "function", "doc": "Shutdown (no-op for synchronous execution).
\n", "signature": "(self):", "funcdef": "def"}, "batchata.BatchRun.dry_run": {"fullname": "batchata.BatchRun.dry_run", "modulename": "batchata", "qualname": "BatchRun.dry_run", "kind": "function", "doc": "Perform a dry run - show cost estimation and job details without executing.
\n\nReturns:\n Self for chaining (doesn't actually execute jobs)
\n", "signature": "(self) -> batchata.core.batch_run.BatchRun:", "funcdef": "def"}, "batchata.Job": {"fullname": "batchata.Job", "modulename": "batchata", "qualname": "Job", "kind": "class", "doc": "Configuration for a single AI job.
\n\nEither provide messages OR prompt (with optional file), not both.
\n\nAttributes:\n id: Unique identifier for the job\n messages: Chat messages for direct message input\n file: Optional file path for file-based input\n prompt: Prompt text (can be used alone or with file)\n model: Model name (e.g., \"claude-3-sonnet\")\n temperature: Sampling temperature (0.0-1.0)\n max_tokens: Maximum tokens to generate\n response_model: Pydantic model for structured output\n enable_citations: Whether to extract citations from response
\n"}, "batchata.Job.__init__": {"fullname": "batchata.Job.__init__", "modulename": "batchata", "qualname": "Job.__init__", "kind": "function", "doc": "\n", "signature": "(\tid: str,\tmodel: str,\tmessages: Optional[List[Dict[str, Any]]] = None,\tfile: Optional[pathlib.Path] = None,\tprompt: Optional[str] = None,\ttemperature: float = 0.7,\tmax_tokens: int = 1000,\tresponse_model: Optional[Type[pydantic.main.BaseModel]] = None,\tenable_citations: bool = False)"}, "batchata.Job.id": {"fullname": "batchata.Job.id", "modulename": "batchata", "qualname": "Job.id", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.Job.model": {"fullname": "batchata.Job.model", "modulename": "batchata", "qualname": "Job.model", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.Job.messages": {"fullname": "batchata.Job.messages", "modulename": "batchata", "qualname": "Job.messages", "kind": "variable", "doc": "\n", "annotation": ": Optional[List[Dict[str, Any]]]", "default_value": "None"}, "batchata.Job.file": {"fullname": "batchata.Job.file", "modulename": "batchata", "qualname": "Job.file", "kind": "variable", "doc": "\n", "annotation": ": Optional[pathlib.Path]", "default_value": "None"}, "batchata.Job.prompt": {"fullname": "batchata.Job.prompt", "modulename": "batchata", "qualname": "Job.prompt", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.Job.temperature": {"fullname": "batchata.Job.temperature", "modulename": "batchata", "qualname": "Job.temperature", "kind": "variable", "doc": "\n", "annotation": ": float", "default_value": "0.7"}, "batchata.Job.max_tokens": {"fullname": "batchata.Job.max_tokens", "modulename": "batchata", "qualname": "Job.max_tokens", "kind": "variable", "doc": "\n", "annotation": ": int", "default_value": "1000"}, "batchata.Job.response_model": {"fullname": "batchata.Job.response_model", "modulename": "batchata", "qualname": "Job.response_model", "kind": "variable", "doc": "\n", "annotation": ": Optional[Type[pydantic.main.BaseModel]]", "default_value": "None"}, "batchata.Job.enable_citations": {"fullname": "batchata.Job.enable_citations", "modulename": "batchata", "qualname": "Job.enable_citations", "kind": "variable", "doc": "\n", "annotation": ": bool", "default_value": "False"}, "batchata.Job.to_dict": {"fullname": "batchata.Job.to_dict", "modulename": "batchata", "qualname": "Job.to_dict", "kind": "function", "doc": "Serialize for state persistence.
\n", "signature": "(self) -> Dict[str, Any]:", "funcdef": "def"}, "batchata.Job.from_dict": {"fullname": "batchata.Job.from_dict", "modulename": "batchata", "qualname": "Job.from_dict", "kind": "function", "doc": "Deserialize from state.
\n", "signature": "(cls, data: Dict[str, Any]) -> batchata.core.job.Job:", "funcdef": "def"}, "batchata.JobResult": {"fullname": "batchata.JobResult", "modulename": "batchata", "qualname": "JobResult", "kind": "class", "doc": "Result from a completed AI job.
\n\nAttributes:\n job_id: ID of the job this result is for\n raw_response: Raw text response from the model (None for failed jobs)\n parsed_response: Structured output (if response_model was used)\n citations: Extracted citations (if enable_citations was True)\n citation_mappings: Maps field names to relevant citations (if response_model used)\n input_tokens: Number of input tokens used\n output_tokens: Number of output tokens generated\n cost_usd: Total cost in USD\n error: Error message if job failed\n batch_id: ID of the batch this job was part of (for mapping to raw files)
\n"}, "batchata.JobResult.__init__": {"fullname": "batchata.JobResult.__init__", "modulename": "batchata", "qualname": "JobResult.__init__", "kind": "function", "doc": "\n", "signature": "(\tjob_id: str,\traw_response: Optional[str] = None,\tparsed_response: Union[pydantic.main.BaseModel, Dict, NoneType] = None,\tcitations: Optional[List[batchata.types.Citation]] = None,\tcitation_mappings: Optional[Dict[str, List[batchata.types.Citation]]] = None,\tinput_tokens: int = 0,\toutput_tokens: int = 0,\tcost_usd: float = 0.0,\terror: Optional[str] = None,\tbatch_id: Optional[str] = None)"}, "batchata.JobResult.job_id": {"fullname": "batchata.JobResult.job_id", "modulename": "batchata", "qualname": "JobResult.job_id", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.JobResult.raw_response": {"fullname": "batchata.JobResult.raw_response", "modulename": "batchata", "qualname": "JobResult.raw_response", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.JobResult.parsed_response": {"fullname": "batchata.JobResult.parsed_response", "modulename": "batchata", "qualname": "JobResult.parsed_response", "kind": "variable", "doc": "\n", "annotation": ": Union[pydantic.main.BaseModel, Dict, NoneType]", "default_value": "None"}, "batchata.JobResult.citations": {"fullname": "batchata.JobResult.citations", "modulename": "batchata", "qualname": "JobResult.citations", "kind": "variable", "doc": "\n", "annotation": ": Optional[List[batchata.types.Citation]]", "default_value": "None"}, "batchata.JobResult.citation_mappings": {"fullname": "batchata.JobResult.citation_mappings", "modulename": "batchata", "qualname": "JobResult.citation_mappings", "kind": "variable", "doc": "\n", "annotation": ": Optional[Dict[str, List[batchata.types.Citation]]]", "default_value": "None"}, "batchata.JobResult.input_tokens": {"fullname": "batchata.JobResult.input_tokens", "modulename": "batchata", "qualname": "JobResult.input_tokens", "kind": "variable", "doc": "\n", "annotation": ": int", "default_value": "0"}, "batchata.JobResult.output_tokens": {"fullname": "batchata.JobResult.output_tokens", "modulename": "batchata", "qualname": "JobResult.output_tokens", "kind": "variable", "doc": "\n", "annotation": ": int", "default_value": "0"}, "batchata.JobResult.cost_usd": {"fullname": "batchata.JobResult.cost_usd", "modulename": "batchata", "qualname": "JobResult.cost_usd", "kind": "variable", "doc": "\n", "annotation": ": float", "default_value": "0.0"}, "batchata.JobResult.error": {"fullname": "batchata.JobResult.error", "modulename": "batchata", "qualname": "JobResult.error", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.JobResult.batch_id": {"fullname": "batchata.JobResult.batch_id", "modulename": "batchata", "qualname": "JobResult.batch_id", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.JobResult.is_success": {"fullname": "batchata.JobResult.is_success", "modulename": "batchata", "qualname": "JobResult.is_success", "kind": "variable", "doc": "Whether the job completed successfully.
\n", "annotation": ": bool"}, "batchata.JobResult.total_tokens": {"fullname": "batchata.JobResult.total_tokens", "modulename": "batchata", "qualname": "JobResult.total_tokens", "kind": "variable", "doc": "Total tokens used (input + output).
\n", "annotation": ": int"}, "batchata.JobResult.to_dict": {"fullname": "batchata.JobResult.to_dict", "modulename": "batchata", "qualname": "JobResult.to_dict", "kind": "function", "doc": "Serialize for state persistence.
\n", "signature": "(self) -> Dict[str, Any]:", "funcdef": "def"}, "batchata.JobResult.save_to_json": {"fullname": "batchata.JobResult.save_to_json", "modulename": "batchata", "qualname": "JobResult.save_to_json", "kind": "function", "doc": "Save JobResult to JSON file.
\n\nArgs:\n filepath: Path to save the JSON file\n indent: JSON indentation (default: 2)
\n", "signature": "(self, filepath: str, indent: int = 2) -> None:", "funcdef": "def"}, "batchata.JobResult.from_dict": {"fullname": "batchata.JobResult.from_dict", "modulename": "batchata", "qualname": "JobResult.from_dict", "kind": "function", "doc": "Deserialize from state.
\n", "signature": "(cls, data: Dict[str, Any]) -> batchata.core.job_result.JobResult:", "funcdef": "def"}, "batchata.Citation": {"fullname": "batchata.Citation", "modulename": "batchata", "qualname": "Citation", "kind": "class", "doc": "Represents a citation extracted from an AI response.
\n"}, "batchata.Citation.__init__": {"fullname": "batchata.Citation.__init__", "modulename": "batchata", "qualname": "Citation.__init__", "kind": "function", "doc": "\n", "signature": "(\ttext: str,\tsource: str,\tpage: Optional[int] = None,\tmetadata: Optional[Dict[str, Any]] = None,\tconfidence: Optional[str] = None,\tmatch_reason: Optional[str] = None)"}, "batchata.Citation.text": {"fullname": "batchata.Citation.text", "modulename": "batchata", "qualname": "Citation.text", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.Citation.source": {"fullname": "batchata.Citation.source", "modulename": "batchata", "qualname": "Citation.source", "kind": "variable", "doc": "\n", "annotation": ": str"}, "batchata.Citation.page": {"fullname": "batchata.Citation.page", "modulename": "batchata", "qualname": "Citation.page", "kind": "variable", "doc": "\n", "annotation": ": Optional[int]", "default_value": "None"}, "batchata.Citation.metadata": {"fullname": "batchata.Citation.metadata", "modulename": "batchata", "qualname": "Citation.metadata", "kind": "variable", "doc": "\n", "annotation": ": Optional[Dict[str, Any]]", "default_value": "None"}, "batchata.Citation.confidence": {"fullname": "batchata.Citation.confidence", "modulename": "batchata", "qualname": "Citation.confidence", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.Citation.match_reason": {"fullname": "batchata.Citation.match_reason", "modulename": "batchata", "qualname": "Citation.match_reason", "kind": "variable", "doc": "\n", "annotation": ": Optional[str]", "default_value": "None"}, "batchata.BatchataError": {"fullname": "batchata.BatchataError", "modulename": "batchata", "qualname": "BatchataError", "kind": "class", "doc": "Base exception for all Batchata errors.
\n", "bases": "builtins.Exception"}, "batchata.CostLimitExceededError": {"fullname": "batchata.CostLimitExceededError", "modulename": "batchata", "qualname": "CostLimitExceededError", "kind": "class", "doc": "Raised when cost limit would be exceeded.
\n", "bases": "batchata.exceptions.BatchataError"}, "batchata.ProviderError": {"fullname": "batchata.ProviderError", "modulename": "batchata", "qualname": "ProviderError", "kind": "class", "doc": "Base exception for provider-related errors.
\n", "bases": "batchata.exceptions.BatchataError"}, "batchata.ProviderNotFoundError": {"fullname": "batchata.ProviderNotFoundError", "modulename": "batchata", "qualname": "ProviderNotFoundError", "kind": "class", "doc": "Raised when no provider is found for a model.
\n", "bases": "batchata.exceptions.ProviderError"}, "batchata.ValidationError": {"fullname": "batchata.ValidationError", "modulename": "batchata", "qualname": "ValidationError", "kind": "class", "doc": "Raised when job or configuration validation fails.
\n", "bases": "batchata.exceptions.BatchataError"}}, "docInfo": {"batchata": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 894}, "batchata.Batch": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 318}, "batchata.Batch.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 54}, "batchata.Batch.config": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Batch.jobs": {"qualname": 2, "fullname": 3, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Batch.set_default_params": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 104}, "batchata.Batch.set_state": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 95}, "batchata.Batch.add_cost_limit": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 89}, "batchata.Batch.raw_files": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 100}, "batchata.Batch.set_verbosity": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 95}, "batchata.Batch.add_time_limit": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 102, "bases": 0, "doc": 291}, "batchata.Batch.add_job": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 272, "bases": 0, "doc": 188}, "batchata.Batch.run": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 136, "bases": 0, "doc": 88}, "batchata.BatchRun": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 123}, "batchata.BatchRun.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 18}, "batchata.BatchRun.config": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.jobs": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.cost_tracker": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.state_manager": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.pending_jobs": {"qualname": 3, "fullname": 4, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.completed_results": {"qualname": 3, "fullname": 4, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.failed_jobs": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.cancelled_jobs": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.total_batches": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.completed_batches": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.current_batch_index": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.current_batch_size": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.batch_tracking": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.results_dir": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.raw_files_dir": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchRun.to_json": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 10}, "batchata.BatchRun.execute": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "batchata.BatchRun.set_on_progress": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 210}, "batchata.BatchRun.is_complete": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "batchata.BatchRun.status": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 7}, "batchata.BatchRun.results": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 23}, "batchata.BatchRun.get_failed_jobs": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 23}, "batchata.BatchRun.shutdown": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "batchata.BatchRun.dry_run": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 27}, "batchata.Job": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 92}, "batchata.Job.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 213, "bases": 0, "doc": 3}, "batchata.Job.id": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.model": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.messages": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.file": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.prompt": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.temperature": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.max_tokens": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.response_model": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.enable_citations": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Job.to_dict": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 7}, "batchata.Job.from_dict": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 6}, "batchata.JobResult": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 106}, "batchata.JobResult.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 282, "bases": 0, "doc": 3}, "batchata.JobResult.job_id": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.raw_response": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.parsed_response": {"qualname": 3, "fullname": 4, "annotation": 6, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.citations": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.citation_mappings": {"qualname": 3, "fullname": 4, "annotation": 5, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.input_tokens": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.output_tokens": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.cost_usd": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.error": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.batch_id": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.JobResult.is_success": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "batchata.JobResult.total_tokens": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "batchata.JobResult.to_dict": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 7}, "batchata.JobResult.save_to_json": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 24}, "batchata.JobResult.from_dict": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 6}, "batchata.Citation": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "batchata.Citation.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 3}, "batchata.Citation.text": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Citation.source": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "batchata.Citation.page": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Citation.metadata": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Citation.confidence": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.Citation.match_reason": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "batchata.BatchataError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "batchata.CostLimitExceededError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "batchata.ProviderError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 9}, "batchata.ProviderNotFoundError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "batchata.ValidationError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}}, "length": 82, "save": true}, "index": {"qualname": {"root": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 5, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.config": {"tf": 1}, "batchata.Batch.jobs": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 16, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchataError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"batchata.BatchRun.current_batch_index": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.input_tokens": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 2}, "d": {"docs": {"batchata.Job.id": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.config": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}}, "df": 2}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.confidence": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}}, "df": 1, "d": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.cancelled_jobs": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.Citation": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}, "batchata.Citation.confidence": {"tf": 1}, "batchata.Citation.match_reason": {"tf": 1}}, "df": 9, "s": {"docs": {"batchata.Job.enable_citations": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}}, "df": 2}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.temperature": {"tf": 1}, "batchata.Job.max_tokens": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}}, "df": 15, "s": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 6}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 17}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.status": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.current_batch_size": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.shutdown": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.is_success": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.source": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.parsed_response": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.page": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.pending_jobs": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.prompt": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderError": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderNotFoundError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Citation.match_reason": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.file": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ValidationError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.cost_tracker": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.batch_tracking": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.BatchRun.total_batches": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 2}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.max_tokens": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.temperature": {"tf": 1}}, "df": 1}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Citation.text": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.state_manager": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {"batchata.Job.max_tokens": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Citation.match_reason": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Job.model": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.messages": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Citation.metadata": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.execute": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.enable_citations": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.JobResult.error": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.output_tokens": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.cost_usd": {"tf": 1}}, "df": 1}}}}}, "fullname": {"root": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 5, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.config": {"tf": 1}, "batchata.Batch.jobs": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 16, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.config": {"tf": 1}, "batchata.Batch.jobs": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.temperature": {"tf": 1}, "batchata.Job.max_tokens": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}, "batchata.Citation.confidence": {"tf": 1}, "batchata.Citation.match_reason": {"tf": 1}, "batchata.BatchataError": {"tf": 1}, "batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 82, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchataError": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}, "batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.total_batches": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"batchata.BatchRun.current_batch_index": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.input_tokens": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 2}, "d": {"docs": {"batchata.Job.id": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.config": {"tf": 1}, "batchata.BatchRun.config": {"tf": 1}}, "df": 2}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.confidence": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.BatchRun.cost_tracker": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}}, "df": 1, "d": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.completed_batches": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.cancelled_jobs": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.current_batch_index": {"tf": 1}, "batchata.BatchRun.current_batch_size": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.Citation": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}, "batchata.Citation.confidence": {"tf": 1}, "batchata.Citation.match_reason": {"tf": 1}}, "df": 9, "s": {"docs": {"batchata.Job.enable_citations": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}}, "df": 2}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.temperature": {"tf": 1}, "batchata.Job.max_tokens": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}}, "df": 15, "s": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 6}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 17}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.BatchRun.state_manager": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.status": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.current_batch_size": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.shutdown": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.is_success": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.source": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.parsed_response": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.page": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.pending_jobs": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.prompt": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderError": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderNotFoundError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.results_dir": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Citation.match_reason": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.file": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.raw_files_dir": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ValidationError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.cost_tracker": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.batch_tracking": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.BatchRun.total_batches": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 2}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.max_tokens": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.temperature": {"tf": 1}}, "df": 1}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Citation.text": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.state_manager": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {"batchata.Job.max_tokens": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Citation.match_reason": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Job.model": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.messages": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Citation.metadata": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.execute": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.enable_citations": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.JobResult.error": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.output_tokens": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.cost_usd": {"tf": 1}}, "df": 1}}}}}, "annotation": {"root": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.temperature": {"tf": 1}, "batchata.Job.max_tokens": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}, "batchata.Citation.confidence": {"tf": 1}, "batchata.Citation.match_reason": {"tf": 1}}, "df": 34, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.jobs": {"tf": 1}, "batchata.BatchRun.pending_jobs": {"tf": 1}, "batchata.BatchRun.completed_results": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 2}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Batch.jobs": {"tf": 1.4142135623730951}, "batchata.BatchRun.pending_jobs": {"tf": 1.4142135623730951}, "batchata.BatchRun.completed_results": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.batch_tracking": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 2, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}, "batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.BatchRun.batch_tracking": {"tf": 1}}, "df": 4}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"batchata.BatchRun.is_complete": {"tf": 1}, "batchata.Job.enable_citations": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.completed_results": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun.failed_jobs": {"tf": 1}, "batchata.BatchRun.cancelled_jobs": {"tf": 1}, "batchata.Job.id": {"tf": 1}, "batchata.Job.model": {"tf": 1}, "batchata.JobResult.job_id": {"tf": 1}, "batchata.Citation.text": {"tf": 1}, "batchata.Citation.source": {"tf": 1}}, "df": 7}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Job.messages": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.JobResult.citations": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Job.file": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Job.prompt": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.Citation.confidence": {"tf": 1}, "batchata.Citation.match_reason": {"tf": 1}}, "df": 6}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata.Job.response_model": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Citation.page": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Job.messages": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Job.file": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.temperature": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job.max_tokens": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata.JobResult.parsed_response": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"batchata.JobResult.parsed_response": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}}, "df": 2}}}}}}}, "default_value": {"root": {"0": {"docs": {"batchata.Job.temperature": {"tf": 1}, "batchata.JobResult.input_tokens": {"tf": 1}, "batchata.JobResult.output_tokens": {"tf": 1}, "batchata.JobResult.cost_usd": {"tf": 1.4142135623730951}}, "df": 4}, "1": {"0": {"0": {"0": {"docs": {"batchata.Job.max_tokens": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"docs": {"batchata.Job.temperature": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.messages": {"tf": 1}, "batchata.Job.file": {"tf": 1}, "batchata.Job.prompt": {"tf": 1}, "batchata.Job.response_model": {"tf": 1}, "batchata.JobResult.raw_response": {"tf": 1}, "batchata.JobResult.parsed_response": {"tf": 1}, "batchata.JobResult.citations": {"tf": 1}, "batchata.JobResult.citation_mappings": {"tf": 1}, "batchata.JobResult.error": {"tf": 1}, "batchata.JobResult.batch_id": {"tf": 1}, "batchata.Citation.page": {"tf": 1}, "batchata.Citation.metadata": {"tf": 1}, "batchata.Citation.confidence": {"tf": 1}, "batchata.Citation.match_reason": {"tf": 1}}, "df": 14}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.enable_citations": {"tf": 1}}, "df": 1}}}}}}}, "signature": {"root": {"0": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 2}}, "df": 4}, "1": {"0": {"0": {"0": {"docs": {"batchata.Job.__init__": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"batchata.Batch.__init__": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}, "2": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}, "7": {"docs": {"batchata.Job.__init__": {"tf": 1}}, "df": 1}, "docs": {"batchata.Batch.__init__": {"tf": 7.937253933193772}, "batchata.Batch.set_default_params": {"tf": 5.477225575051661}, "batchata.Batch.set_state": {"tf": 7.745966692414834}, "batchata.Batch.add_cost_limit": {"tf": 5.656854249492381}, "batchata.Batch.raw_files": {"tf": 6.164414002968976}, "batchata.Batch.set_verbosity": {"tf": 5.656854249492381}, "batchata.Batch.add_time_limit": {"tf": 9.219544457292887}, "batchata.Batch.add_job": {"tf": 14.933184523068078}, "batchata.Batch.run": {"tf": 10.392304845413264}, "batchata.BatchRun.__init__": {"tf": 7.14142842854285}, "batchata.BatchRun.to_json": {"tf": 3.4641016151377544}, "batchata.BatchRun.execute": {"tf": 3.1622776601683795}, "batchata.BatchRun.set_on_progress": {"tf": 8.306623862918075}, "batchata.BatchRun.status": {"tf": 5.0990195135927845}, "batchata.BatchRun.results": {"tf": 6.082762530298219}, "batchata.BatchRun.get_failed_jobs": {"tf": 4.69041575982343}, "batchata.BatchRun.shutdown": {"tf": 3.1622776601683795}, "batchata.BatchRun.dry_run": {"tf": 4.898979485566356}, "batchata.Job.__init__": {"tf": 13.152946437965905}, "batchata.Job.to_dict": {"tf": 4.69041575982343}, "batchata.Job.from_dict": {"tf": 6.48074069840786}, "batchata.JobResult.__init__": {"tf": 15.033296378372908}, "batchata.JobResult.to_dict": {"tf": 4.69041575982343}, "batchata.JobResult.save_to_json": {"tf": 5.830951894845301}, "batchata.JobResult.from_dict": {"tf": 6.48074069840786}, "batchata.Citation.__init__": {"tf": 10.488088481701515}}, "df": 26, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.results": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 3}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 14}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_job": {"tf": 2}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1.4142135623730951}, "batchata.Job.__init__": {"tf": 2}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 2.23606797749979}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation.__init__": {"tf": 2.23606797749979}}, "df": 14}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 19}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1.4142135623730951}, "batchata.Batch.set_verbosity": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 15}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 3}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.status": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.__init__": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 2}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.status": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 2.449489742783178}, "batchata.Batch.run": {"tf": 1}, "batchata.Job.__init__": {"tf": 2}, "batchata.JobResult.__init__": {"tf": 2.23606797749979}, "batchata.Citation.__init__": {"tf": 2}}, "df": 8}}}}}}}, "n": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 2.6457513110645907}, "batchata.Batch.run": {"tf": 1}, "batchata.Job.__init__": {"tf": 2}, "batchata.JobResult.__init__": {"tf": 2.449489742783178}, "batchata.JobResult.save_to_json": {"tf": 1}, "batchata.Citation.__init__": {"tf": 2}}, "df": 9, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 4}}}}}}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 14}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.__init__": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.__init__": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Citation.__init__": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}}, "df": 2, "d": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.JobResult.__init__": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.JobResult.__init__": {"tf": 1.4142135623730951}}, "df": 5}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job.__init__": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation.__init__": {"tf": 1}}, "df": 7}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.results": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1.4142135623730951}, "batchata.JobResult.__init__": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 5, "s": {"docs": {"batchata.BatchRun.__init__": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.results": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchataError": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchataError": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 4}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.ProviderNotFoundError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1.7320508075688772}}, "df": 7}, "1": {"0": {"docs": {"batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}, "5": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}, "docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 4, "f": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}, "2": {"0": {"2": {"5": {"0": {"5": {"1": {"4": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}, "docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 2}, "3": {"0": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}}, "df": 1}, "9": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 2}}, "df": 1}, "docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}, "4": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 3}, "5": {"0": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 2}, "4": {"1": {"5": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"batchata": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}}, "df": 2}, "7": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}}, "df": 2}, "docs": {"batchata": {"tf": 23.979157616563597}, "batchata.Batch": {"tf": 14.560219778561036}, "batchata.Batch.__init__": {"tf": 2.449489742783178}, "batchata.Batch.config": {"tf": 1.7320508075688772}, "batchata.Batch.jobs": {"tf": 1.7320508075688772}, "batchata.Batch.set_default_params": {"tf": 7.54983443527075}, "batchata.Batch.set_state": {"tf": 7.3484692283495345}, "batchata.Batch.add_cost_limit": {"tf": 6.708203932499369}, "batchata.Batch.raw_files": {"tf": 6.48074069840786}, "batchata.Batch.set_verbosity": {"tf": 7.874007874011811}, "batchata.Batch.add_time_limit": {"tf": 11.575836902790225}, "batchata.Batch.add_job": {"tf": 9}, "batchata.Batch.run": {"tf": 3.605551275463989}, "batchata.BatchRun": {"tf": 9.219544457292887}, "batchata.BatchRun.__init__": {"tf": 2.23606797749979}, "batchata.BatchRun.config": {"tf": 1.7320508075688772}, "batchata.BatchRun.jobs": {"tf": 1.7320508075688772}, "batchata.BatchRun.cost_tracker": {"tf": 1.7320508075688772}, "batchata.BatchRun.state_manager": {"tf": 1.7320508075688772}, "batchata.BatchRun.pending_jobs": {"tf": 1.7320508075688772}, "batchata.BatchRun.completed_results": {"tf": 1.7320508075688772}, "batchata.BatchRun.failed_jobs": {"tf": 1.7320508075688772}, "batchata.BatchRun.cancelled_jobs": {"tf": 1.7320508075688772}, "batchata.BatchRun.total_batches": {"tf": 1.7320508075688772}, "batchata.BatchRun.completed_batches": {"tf": 1.7320508075688772}, "batchata.BatchRun.current_batch_index": {"tf": 1.7320508075688772}, "batchata.BatchRun.current_batch_size": {"tf": 1.7320508075688772}, "batchata.BatchRun.batch_tracking": {"tf": 1.7320508075688772}, "batchata.BatchRun.results_dir": {"tf": 1.7320508075688772}, "batchata.BatchRun.raw_files_dir": {"tf": 1.7320508075688772}, "batchata.BatchRun.to_json": {"tf": 1.7320508075688772}, "batchata.BatchRun.execute": {"tf": 1.7320508075688772}, "batchata.BatchRun.set_on_progress": {"tf": 10.583005244258363}, "batchata.BatchRun.is_complete": {"tf": 1.7320508075688772}, "batchata.BatchRun.status": {"tf": 1.7320508075688772}, "batchata.BatchRun.results": {"tf": 3.1622776601683795}, "batchata.BatchRun.get_failed_jobs": {"tf": 2.8284271247461903}, "batchata.BatchRun.shutdown": {"tf": 1.7320508075688772}, "batchata.BatchRun.dry_run": {"tf": 2.449489742783178}, "batchata.Job": {"tf": 2.8284271247461903}, "batchata.Job.__init__": {"tf": 1.7320508075688772}, "batchata.Job.id": {"tf": 1.7320508075688772}, "batchata.Job.model": {"tf": 1.7320508075688772}, "batchata.Job.messages": {"tf": 1.7320508075688772}, "batchata.Job.file": {"tf": 1.7320508075688772}, "batchata.Job.prompt": {"tf": 1.7320508075688772}, "batchata.Job.temperature": {"tf": 1.7320508075688772}, "batchata.Job.max_tokens": {"tf": 1.7320508075688772}, "batchata.Job.response_model": {"tf": 1.7320508075688772}, "batchata.Job.enable_citations": {"tf": 1.7320508075688772}, "batchata.Job.to_dict": {"tf": 1.7320508075688772}, "batchata.Job.from_dict": {"tf": 1.7320508075688772}, "batchata.JobResult": {"tf": 2.449489742783178}, "batchata.JobResult.__init__": {"tf": 1.7320508075688772}, "batchata.JobResult.job_id": {"tf": 1.7320508075688772}, "batchata.JobResult.raw_response": {"tf": 1.7320508075688772}, "batchata.JobResult.parsed_response": {"tf": 1.7320508075688772}, "batchata.JobResult.citations": {"tf": 1.7320508075688772}, "batchata.JobResult.citation_mappings": {"tf": 1.7320508075688772}, "batchata.JobResult.input_tokens": {"tf": 1.7320508075688772}, "batchata.JobResult.output_tokens": {"tf": 1.7320508075688772}, "batchata.JobResult.cost_usd": {"tf": 1.7320508075688772}, "batchata.JobResult.error": {"tf": 1.7320508075688772}, "batchata.JobResult.batch_id": {"tf": 1.7320508075688772}, "batchata.JobResult.is_success": {"tf": 1.7320508075688772}, "batchata.JobResult.total_tokens": {"tf": 2}, "batchata.JobResult.to_dict": {"tf": 1.7320508075688772}, "batchata.JobResult.save_to_json": {"tf": 2.449489742783178}, "batchata.JobResult.from_dict": {"tf": 1.7320508075688772}, "batchata.Citation": {"tf": 1.7320508075688772}, "batchata.Citation.__init__": {"tf": 1.7320508075688772}, "batchata.Citation.text": {"tf": 1.7320508075688772}, "batchata.Citation.source": {"tf": 1.7320508075688772}, "batchata.Citation.page": {"tf": 1.7320508075688772}, "batchata.Citation.metadata": {"tf": 1.7320508075688772}, "batchata.Citation.confidence": {"tf": 1.7320508075688772}, "batchata.Citation.match_reason": {"tf": 1.7320508075688772}, "batchata.BatchataError": {"tf": 1.7320508075688772}, "batchata.CostLimitExceededError": {"tf": 1.7320508075688772}, "batchata.ProviderError": {"tf": 1.7320508075688772}, "batchata.ProviderNotFoundError": {"tf": 1.7320508075688772}, "batchata.ValidationError": {"tf": 1.7320508075688772}}, "df": 82, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata": {"tf": 3.872983346207417}, "batchata.Batch": {"tf": 2.6457513110645907}, "batchata.Batch.__init__": {"tf": 2}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 2.449489742783178}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 2.449489742783178}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 16, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata": {"tf": 2}, "batchata.BatchataError": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 5}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "e": {"docs": {"batchata.BatchataError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "d": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.CostLimitExceededError": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}}, "df": 1}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1.7320508075688772}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 4}, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.7320508075688772}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 3, "r": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 3}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata": {"tf": 2}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}}, "df": 3}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}}, "t": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 4, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2, "r": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 6, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 3}}, "s": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}, "d": {"docs": {"batchata.Batch.add_job": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1.7320508075688772}}, "df": 4}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.run": {"tf": 2.23606797749979}, "batchata.BatchRun.set_on_progress": {"tf": 2.449489742783178}}, "df": 3}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "f": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}}, "df": 4}}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.Citation": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 12, "p": {"docs": {}, "df": 0, "i": {"docs": {"batchata": {"tf": 2}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.Citation": {"tf": 1}}, "df": 4}, "n": {"docs": {"batchata.Citation": {"tf": 1}}, "df": 1, "d": {"docs": {"batchata": {"tf": 2}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 7}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata": {"tf": 2.23606797749979}}, "df": 1}}}}}}}}, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.BatchRun.is_complete": {"tf": 1}}, "df": 2, "n": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 12}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 2.23606797749979}, "batchata.Batch": {"tf": 1.7320508075688772}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 2.23606797749979}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}}, "df": 5, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_job": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchataError": {"tf": 1}}, "df": 6, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata": {"tf": 2.23606797749979}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1.4142135623730951}, "batchata.Batch.set_verbosity": {"tf": 1.7320508075688772}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 2}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job": {"tf": 2.23606797749979}, "batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.BatchataError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 21}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"batchata.ProviderNotFoundError": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}, "batchata.JobResult.from_dict": {"tf": 1}, "batchata.Citation": {"tf": 1}}, "df": 9}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 2.449489742783178}, "batchata.Batch": {"tf": 1.7320508075688772}, "batchata.Batch.set_state": {"tf": 2.23606797749979}, "batchata.Batch.add_job": {"tf": 2}, "batchata.Job": {"tf": 2.23606797749979}, "batchata.JobResult.save_to_json": {"tf": 1.4142135623730951}}, "df": 6, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 2.449489742783178}, "batchata.JobResult": {"tf": 1}}, "df": 4}, "+": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.run": {"tf": 1.4142135623730951}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 4}}, "s": {"docs": {"batchata.ValidationError": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2.23606797749979}, "batchata.Citation": {"tf": 1}}, "df": 5, "s": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"batchata": {"tf": 2.449489742783178}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 9}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 11}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.ProviderError": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Citation": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 2.449489742783178}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1.7320508075688772}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 8}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.__init__": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1.7320508075688772}, "batchata.JobResult": {"tf": 1.7320508075688772}}, "df": 3}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}}, "df": 2}, "d": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"batchata": {"tf": 2.23606797749979}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 5}}}, "h": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 8}}}}, "n": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.CostLimitExceededError": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.execute": {"tf": 1}}, "df": 1}}, "s": {"docs": {"batchata.JobResult": {"tf": 1.7320508075688772}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 2.449489742783178}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 2}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}, "batchata.CostLimitExceededError": {"tf": 1}}, "df": 8}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.BatchRun.is_complete": {"tf": 1}}, "df": 2, "d": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.results": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.JobResult.is_success": {"tf": 1}}, "df": 6}, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.execute": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 8}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 2}, "batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 4}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1}, "batchata.Citation": {"tf": 1}}, "df": 3, "s": {"docs": {"batchata": {"tf": 2.23606797749979}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2}}, "df": 4}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.7320508075688772}}, "df": 2, "s": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 9}}}}}, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {"batchata": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 7}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 4}}, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1.7320508075688772}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1.7320508075688772}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 12, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1.4142135623730951}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 2.23606797749979}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1.4142135623730951}, "batchata.JobResult.save_to_json": {"tf": 1.4142135623730951}}, "df": 14, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 5}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 2}, "batchata.Batch.add_time_limit": {"tf": 4}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 2.23606797749979}}, "df": 4}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}}, "df": 6}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 6, "s": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.JobResult": {"tf": 1}, "batchata.Citation": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 10}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.set_state": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchataError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}}, "df": 2, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.CostLimitExceededError": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 5, "d": {"docs": {"batchata.Batch.raw_files": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "v": {"docs": {"batchata": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"batchata.BatchataError": {"tf": 1}, "batchata.ProviderError": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}, "batchata.JobResult": {"tf": 2.23606797749979}}, "df": 5, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 2}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 5}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.run": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"batchata.BatchRun.shutdown": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.7320508075688772}, "batchata.Batch.run": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "r": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.ValidationError": {"tf": 1}}, "df": 6, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.results": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_job": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 2}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.JobResult": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 8}, "d": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 2}}, "df": 3, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "n": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 2}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1.7320508075688772}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 1.4142135623730951}, "batchata.JobResult.total_tokens": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.JobResult.save_to_json": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 3}}}}, "f": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2}}, "df": 4}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 2}, "batchata.Batch.add_time_limit": {"tf": 3.605551275463989}, "batchata.CostLimitExceededError": {"tf": 1}}, "df": 5, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}, "batchata.BatchRun.__init__": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata.Batch.set_verbosity": {"tf": 1.7320508075688772}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 2}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}}}, "x": {"docs": {"batchata": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.7320508075688772}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.7320508075688772}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.7320508075688772}, "batchata.Batch.run": {"tf": 1.7320508075688772}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 10, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1.7320508075688772}, "batchata.Batch.set_verbosity": {"tf": 1.4142135623730951}}, "df": 3, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 3}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.dry_run": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 2}}}}}}}}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}}, "g": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 3, "d": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"batchata.BatchRun.status": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 3}}, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 4.47213595499958}, "batchata.Batch": {"tf": 4.242640687119285}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.set_verbosity": {"tf": 2}, "batchata.Batch.add_job": {"tf": 3.1622776601683795}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 7}}}}, "s": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1.7320508075688772}, "batchata.Batch.set_state": {"tf": 2.6457513110645907}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.Job.to_dict": {"tf": 1}, "batchata.Job.from_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}, "batchata.JobResult.from_dict": {"tf": 1}}, "df": 8}, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 2.23606797749979}}, "df": 2}, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.results": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.status": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {"batchata": {"tf": 1.7320508075688772}}, "df": 1, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 4}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}}, "df": 1}}, "p": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1, "r": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 2}, "batchata.Batch": {"tf": 1.4142135623730951}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.set_state": {"tf": 1.4142135623730951}, "batchata.Batch.set_verbosity": {"tf": 1.7320508075688772}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}}, "df": 8}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.Batch.add_cost_limit": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.Batch.set_verbosity": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 9}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 2.6457513110645907}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.7320508075688772}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata.BatchRun.to_json": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"batchata.Job.to_dict": {"tf": 1}, "batchata.JobResult.to_dict": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.JobResult.is_success": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1.4142135623730951}}, "df": 3, "d": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.execute": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.run": {"tf": 1}, "batchata.BatchRun": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun.dry_run": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"batchata.BatchRun.shutdown": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"batchata": {"tf": 1.7320508075688772}, "batchata.Batch": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.add_job": {"tf": 2.23606797749979}, "batchata.Job": {"tf": 2}, "batchata.JobResult": {"tf": 1.7320508075688772}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 7, "s": {"docs": {"batchata": {"tf": 2.23606797749979}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata.BatchRun.set_on_progress": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"batchata": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"batchata": {"tf": 1}, "batchata.BatchRun.set_on_progress": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 3, "s": {"docs": {"batchata": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}, "x": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Job": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.BatchRun": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_time_limit": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Job": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 3, "s": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 2}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.Job": {"tf": 1.7320508075688772}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"batchata.Batch.raw_files": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_job": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 2.23606797749979}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"batchata": {"tf": 1.4142135623730951}, "batchata.Batch": {"tf": 1.7320508075688772}, "batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.Job": {"tf": 1.4142135623730951}, "batchata.JobResult": {"tf": 2.23606797749979}, "batchata.JobResult.is_success": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 10, "s": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.set_default_params": {"tf": 1.4142135623730951}, "batchata.Batch.add_cost_limit": {"tf": 1.4142135623730951}, "batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1.4142135623730951}, "batchata.BatchRun": {"tf": 1.4142135623730951}, "batchata.BatchRun.__init__": {"tf": 1.4142135623730951}, "batchata.BatchRun.set_on_progress": {"tf": 1.4142135623730951}, "batchata.BatchRun.is_complete": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}, "batchata.BatchRun.dry_run": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 14}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"batchata.BatchRun.results": {"tf": 1.7320508075688772}, "batchata.JobResult.save_to_json": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.set_state": {"tf": 1}, "batchata.BatchRun.to_json": {"tf": 1}, "batchata.JobResult.save_to_json": {"tf": 1.7320508075688772}}, "df": 4, "l": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.Batch.raw_files": {"tf": 1}}, "df": 2}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"batchata": {"tf": 2.449489742783178}}, "df": 1, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.set_default_params": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Job": {"tf": 1}}, "df": 1, "s": {"docs": {"batchata.JobResult": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.__init__": {"tf": 1}, "batchata.JobResult": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "o": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1.4142135623730951}, "batchata.Batch.run": {"tf": 1}, "batchata.BatchRun.shutdown": {"tf": 1}, "batchata.ProviderNotFoundError": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.set_state": {"tf": 1}, "batchata.JobResult": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"batchata.Batch.add_job": {"tf": 1.4142135623730951}, "batchata.Job": {"tf": 1}}, "df": 2, "e": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.BatchRun.get_failed_jobs": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"batchata.Batch.add_cost_limit": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"batchata": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"batchata": {"tf": 1}, "batchata.Batch": {"tf": 1}, "batchata.ValidationError": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"batchata.Batch.add_time_limit": {"tf": 1}, "batchata.Batch.run": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"batchata": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"batchata.Batch.set_verbosity": {"tf": 2}}, "df": 1}}}}}}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"batchata": {"tf": 1.4142135623730951}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"batchata.Batch": {"tf": 1}, "batchata.Batch.add_job": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"batchata.Batch.add_time_limit": {"tf": 2.449489742783178}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"batchata.Batch.run": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. diff --git a/pyproject.toml b/pyproject.toml index 7974266..4220f2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "batchata" -version = "0.4.6" +version = "0.4.7" description = "Unified Python API for AI batch requests with 50% cost savings on OpenAI and Anthropic" readme = "README.md" requires-python = ">=3.12" From eb6f61a411610afbf5f0fb26fcf3783baecf38f4 Mon Sep 17 00:00:00 2001 From: Agam More