Skip to content

Commit 4cfa57b

Browse files
committed
Fixing comments
1 parent d9b6825 commit 4cfa57b

10 files changed

+44
-17
lines changed

examples/fern_documentation/python/core/add_metadata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
)
1919

2020
if error:
21-
raise Exception(f"Failed to create indexes: {error}")
21+
raise Exception(f"Failed to add attributes: {error}")

examples/fern_documentation/python/core/create_index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
)
99
r = compass_client.create_index(index_name=os.getenv("INDEX_NAME"))
1010
if r.error:
11-
raise Exception(f"Failed to create indexes: {r.error}")
11+
raise Exception(f"Failed to create index: {r.error}")

examples/fern_documentation/python/core/delete_doc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
)
1212

1313
if r.error:
14-
raise Exception(f"Failed to create indexes: {r.error}")
14+
raise Exception(f"Failed to delete doc: {r.error}")

examples/fern_documentation/python/core/delete_index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
)
99
r = compass_client.delete_index(index_name=os.getenv("INDEX_NAME"))
1010
if r.error:
11-
raise Exception(f"Failed to create indexes: {r.error}")
11+
raise Exception(f"Failed to delete index: {r.error}")
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import json
12
import os
23

34
from cohere.compass.clients import CompassClient
@@ -7,10 +8,36 @@
78
bearer_token=os.getenv("COMPASS_API_BEARER_TOKEN"),
89
)
910

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,
1233
document_id=os.getenv("DOCUMENT_ID"),
13-
asset_id=os.getenv("ASSET_ID"),
34+
asset_id=asset_id,
1435
)
1536

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))

examples/fern_documentation/python/core/get_document.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
)
1212

1313
if r.error:
14-
raise Exception(f"Failed to create indexes: {r.error}")
14+
raise Exception(f"Failed to get doc: {r.error}")
1515

16-
print(r.hits)
16+
print(r.result.hits)

examples/fern_documentation/python/core/list_index.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
indexes = r.result["indexes"]
1414
for index in indexes:
1515
print(f"Index name: {index['name']}")
16-
print(f"Chunk counts: {index['count']}")
17-
print(f"Document counts: {index['parent_doc_count']}")
16+
print(f"Chunk count: {index['count']}")
17+
print(f"Document count: {index['parent_doc_count']}")

examples/fern_documentation/python/core/refresh_index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
)
99
r = compass_client.refresh_index(index_name=os.getenv("INDEX_NAME"))
1010
if r.error:
11-
raise Exception(f"Failed to create indexes: {r.error}")
11+
raise Exception(f"Failed to refresh indexes: {r.error}")

examples/fern_documentation/python/core/search_chunks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
bearer_token=os.getenv("COMPASS_API_BEARER_TOKEN"),
88
)
99
r = compass_client.search_chunks(
10-
index_name=os.getenv("INDEX_NAME"), query="hello world"
10+
index_name=os.getenv("INDEX_NAME"), query=os.getenv("SEARCH_QUERY")
1111
)
1212

1313
if r.error:
14-
raise Exception(f"Failed to create indexes: {r.error}")
14+
raise Exception(f"Failed to search: {r.error}")
1515

1616
print(r.hits)

examples/fern_documentation/python/core/search_doc.py examples/fern_documentation/python/core/search_docs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
bearer_token=os.getenv("COMPASS_API_BEARER_TOKEN"),
88
)
99
r = compass_client.search_documents(
10-
index_name=os.getenv("INDEX_NAME"), query="hello world"
10+
index_name=os.getenv("INDEX_NAME"), query=os.getenv("SEARCH_QUERY")
1111
)
1212

1313
if r.error:
14-
raise Exception(f"Failed to create indexes: {r.error}")
14+
raise Exception(f"Failed to search doc: {r.error}")
1515

1616
print(r.hits)

0 commit comments

Comments
 (0)