lynn-twinkl commited on
Commit
90cbdd8
·
1 Parent(s): 293144e

Increased max concurrency to 20

Browse files
Files changed (1) hide show
  1. src/extract_usage.py +1 -1
src/extract_usage.py CHANGED
@@ -4,7 +4,7 @@ from typing import List, Dict, Any
4
  from dotenv import load_dotenv
5
  load_dotenv()
6
 
7
- def extract_usage(docs, max_concurrency: int = 15) -> List[List[str]]:
8
 
9
  llm = ChatOpenAI(
10
  model='gpt-4.1-mini',
 
4
  from dotenv import load_dotenv
5
  load_dotenv()
6
 
7
+ def extract_usage(docs, max_concurrency: int = 20) -> List[List[str]]:
8
 
9
  llm = ChatOpenAI(
10
  model='gpt-4.1-mini',