File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -134,15 +134,15 @@ parser = VisionParser(
134
134
temperature = 0.7 ,
135
135
top_p = 0.4 ,
136
136
image_mode = " url" ,
137
- detailed_extraction = True , # Set to True for more detailed extraction
137
+ detailed_extraction = False , # Set to True for more detailed extraction
138
138
enable_concurrency = True ,
139
139
)
140
140
141
141
# Initialize parser with Azure OpenAI model
142
142
parser = VisionParser(
143
143
model_name = " gpt-4o" ,
144
144
image_mode = " url" ,
145
- detailed_extraction = True , # Set to True for more detailed extraction
145
+ detailed_extraction = False , # Set to True for more detailed extraction
146
146
enable_concurrency = True ,
147
147
openai_config = {
148
148
" AZURE_ENDPOINT_URL" : " https://****.openai.azure.com/" , # replace with your azure endpoint url
@@ -160,7 +160,7 @@ parser = VisionParser(
160
160
temperature = 0.7 ,
161
161
top_p = 0.4 ,
162
162
image_mode = " url" ,
163
- detailed_extraction = True , # Set to True for more detailed extraction
163
+ detailed_extraction = False , # Set to True for more detailed extraction
164
164
enable_concurrency = True ,
165
165
)
166
166
@@ -171,7 +171,7 @@ parser = VisionParser(
171
171
temperature = 0.7 ,
172
172
top_p = 0.4 ,
173
173
image_mode = " url" ,
174
- detailed_extraction = True , # Set to True for more detailed extraction
174
+ detailed_extraction = False , # Set to True for more detailed extraction
175
175
enable_concurrency = True ,
176
176
)
177
177
```
You can’t perform that action at this time.
0 commit comments