Skip to content

Commit

Permalink
Merge pull request #3 from Prismadic/readme
Browse files Browse the repository at this point in the history
🚧 fix(wip): more qdrant references
  • Loading branch information
mxchinegod authored Dec 13, 2023
2 parents dccb6c2 + 8fe6280 commit 1473e3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Type "help", "copyright", "credits" or "license" for more information.
list({"name": "John", "age": 30, "city": "New York"}),
[{"name": "John", "age": 30, "city": "New York"}]
]
>>> qdrant_payload_examples = [
>>> milvus_payload_examples = [
{"count": 10, "sizes": [35, 36, 38]},
{"price": 11.99,"ratings": [9.1, 9.2, 9.4]},
{"is_delivered": True,"responses": [False, False, True, False]},
Expand Down Expand Up @@ -86,7 +86,7 @@ JSON->YAML bytes ratio: 0.8695652173913043
name: John

JSON->YAML bytes ratio: 0.8163265306122449
>>> for each in qdrant_payload_examples:
>>> for each in milvus_payload_examples:
package = boxing.Payload(data=each, fmt="yml")
payload = package.deliver()
print(payload)
Expand Down
4 changes: 2 additions & 2 deletions hygiene/tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[{"name": "John", "age": 30, "city": "New York"}]
]

qdrant_payload_examples = [
milvus_payload_examples = [
{
"count": 10,
"sizes": [35, 36, 38]
Expand Down Expand Up @@ -61,7 +61,7 @@ def calculate_ratio(string, json_obj):
print(payload)
calculate_ratio(payload, each)

for each in qdrant_payload_examples:
for each in milvus_payload_examples:
package = boxing.Payload(data=each, fmt="yml")
payload = package.deliver()
print(payload)
Expand Down

0 comments on commit 1473e3d

Please sign in to comment.