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
Add header to Codex API requests for capturing product analytics data (#53)
* pass metadata in header for codex API requests to indicate integration type
* hatch fmt
* small fixes
* ignore type check in test
* include cleanlab-codex version in headers for codex backend requests
* update client lib version
* respond to PR feedback
* add instructions to DEVELOPMENT for how to build and install the package locally
* small changes re: angela's feedback
* amend changelog
You may want to build and install the package locally - for example, to see how your changes affect other Python code in a script or Jupyter notebook.
97
+
98
+
To do this, you can build the package with `hatch build` and then install it in your local environment with `pip install dist/cleanlab_codex-<version>-py3-none-any.whl`.
99
+
100
+
Alternatively, you can use `pip install -e /path/to/cleanlab-codex` to install the package from your local code. Note that if you make further local changes after that, you may need to reload the module, i.e. `reload(cleanlab_codex)`, or restart the kernel.
101
+
93
102
## Continuous integration
94
103
95
104
Testing, type checking, and formatting/linting is [checked in CI][ci].
"""Query Codex to check if this project contains an answer to the question. Add the question to the project for SME review if it does not.
164
166
@@ -173,10 +175,38 @@ def query(
173
175
If Codex is able to answer the question, the first element will be the answer returned by Codex and the second element will be the existing [`Entry`](/codex/api/python/types.entry#class-entry) in the Codex project.
174
176
If Codex is unable to answer the question, the first element will be `fallback_answer` if provided, otherwise None. The second element will be a new [`Entry`](/codex/api/python/types.entry#class-entry) in the Codex project.
0 commit comments