Skip to content

Commit 8c20c41

Browse files
committed
feat: remove unused config
1 parent 6e646dd commit 8c20c41

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

examples/example.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,16 +170,15 @@ async def main() -> int:
170170

171171
logger.info("Using deployment: %s", deployment_id)
172172

173-
# Run classification with OAuth authentication - maximize resilience
173+
# Run classification with OAuth authentication
174174
options = AthenaOptions(
175175
host=host,
176176
resize_images=True,
177177
deployment_id=deployment_id,
178178
compress_images=True,
179-
timeout=None, # No timeout - allow infinite streaming
180-
keepalive_interval=5.0, # Frequent keepalives for max resilience
179+
keepalive_interval=5.0,
181180
affiliate=affiliate,
182-
max_batch_size=10, # Test with larger batch size
181+
max_batch_size=10,
183182
)
184183

185184
sent, received = await run_oauth_example(

0 commit comments

Comments
 (0)