|
| 1 | +import json |
1 | 2 | import os
|
2 | 3 |
|
3 | 4 | from cohere.compass.clients import CompassClient
|
|
7 | 8 | bearer_token=os.getenv("COMPASS_API_BEARER_TOKEN"),
|
8 | 9 | )
|
9 | 10 |
|
10 |
| -r = compass_client.get_document_asset( |
11 |
| - index_name=os.getenv("INDEX_NAME"), |
| 11 | +results = compass_client.search_chunks( |
| 12 | + index_name=os.getenv("INDEX_NAME"), query=os.getenv("SEARCH_QUERY") |
| 13 | +) |
| 14 | +if results.error: |
| 15 | + raise Exception(f"Failed to search chunks: {results.error}") |
| 16 | + |
| 17 | +hits = results.hits |
| 18 | + |
| 19 | +if not hits: |
| 20 | + raise Exception("No hits found") |
| 21 | + |
| 22 | +hit = hits[0] |
| 23 | + |
| 24 | +asset_id: str = hit.assets_info[0].asset_id # type: ignore |
| 25 | +document_id = hit.document_id |
| 26 | +# URL to fetch asset |
| 27 | +presigned_url = hit.assets_info[0].presigned_url |
| 28 | + |
| 29 | + |
| 30 | +### Get document asset again, after pre-signed url has expired |
| 31 | +asset, content_type = compass_client.get_document_asset( |
| 32 | + index_name=document_id, |
12 | 33 | document_id=os.getenv("DOCUMENT_ID"),
|
13 |
| - asset_id=os.getenv("ASSET_ID"), |
| 34 | + asset_id=asset_id, |
14 | 35 | )
|
15 | 36 |
|
16 |
| -print(r) |
| 37 | +# Save the asset to a file. |
| 38 | +if content_type in ["image/jpeg", "image/png"]: |
| 39 | + with open(f"{asset_id}", "wb") as f: |
| 40 | + f.write(asset) |
| 41 | +# Print the asset as JSON |
| 42 | +elif "text/json" in content_type: |
| 43 | + print(json.dumps(asset, indent=2)) |
0 commit comments