You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python client connection pooling fix and add context manager capability to protocol (deven96#69)
* utilize connection pool properly. Add ability to use protocol as a context
* add formatting and linting to python actions
* Refactor: Make protocol dep internal
- extract base class needed by clients.
- Add ai_response, ai_query
- Update tests and Readme
* format
* fix python import path and update readme
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,4 +35,13 @@ Available languages are:
35
35
- typescript.
36
36
37
37
In order to communicate effectively with the ahnlich db, you would have to extend the bincode serialization protocol automatically provided by `serde_generate`.
38
-
Your message(in bytes) should be serialized and deserialized in the following format => `AHNLICH_HEADERS` + `VERSION` + `QUERY/SERVER_RESPONSE`. Bytes are `Little Endian`.
38
+
Your message(in bytes) should be serialized and deserialized in the following format => `AHNLICH_HEADERS` + `VERSION` + `QUERY/SERVER_RESPONSE`. Bytes are `Little Endian`.
39
+
40
+
41
+
## How Client Releases Work
42
+
43
+
The clients follow a similar process when deploying new releases.
44
+
[Example with python client](https://github.com/deven96/ahnlich/blob/main/sdk/ahnlich-client-py/README.md#deploy-to-artifactory).
0 commit comments