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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,21 @@
1
1
# Changelog
2
2
3
+
## 0.1.0-alpha.4 (2024-11-22)
4
+
5
+
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/CZL-AI/czlai-python/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
6
+
7
+
### Chores
8
+
9
+
***internal:** fix compat model_dump method when warnings are passed ([#17](https://github.com/CZL-AI/czlai-python/issues/17)) ([e4e6d50](https://github.com/CZL-AI/czlai-python/commit/e4e6d50fa26706b601ee003d7e70a9b0f24492e4))
10
+
* rebuild project due to codegen change ([#13](https://github.com/CZL-AI/czlai-python/issues/13)) ([654605e](https://github.com/CZL-AI/czlai-python/commit/654605e20a39dca97bcd51d11edff4ac510ca2cd))
11
+
* rebuild project due to codegen change ([#15](https://github.com/CZL-AI/czlai-python/issues/15)) ([9c7f95b](https://github.com/CZL-AI/czlai-python/commit/9c7f95b397bd35058e46df7cd273444bec53e103))
12
+
* rebuild project due to codegen change ([#16](https://github.com/CZL-AI/czlai-python/issues/16)) ([2b9734c](https://github.com/CZL-AI/czlai-python/commit/2b9734ceed8b55ff808e9da4c56fc617743b6b8d))
13
+
14
+
15
+
### Documentation
16
+
17
+
* add info log level to readme ([#18](https://github.com/CZL-AI/czlai-python/issues/18)) ([0e1f0ab](https://github.com/CZL-AI/czlai-python/commit/0e1f0ab3f6c434065fff877406f8fec93387eba1))
18
+
3
19
## 0.1.0-alpha.3 (2024-11-08)
4
20
5
21
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/CZL-AI/czlai-python/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -159,12 +159,14 @@ Note that requests that time out are [retried twice by default](#retries).
159
159
160
160
We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
161
161
162
-
You can enable logging by setting the environment variable `CZLAI_LOG` to `debug`.
162
+
You can enable logging by setting the environment variable `CZLAI_LOG` to `info`.
163
163
164
164
```shell
165
-
$ export CZLAI_LOG=debug
165
+
$ export CZLAI_LOG=info
166
166
```
167
167
168
+
Or to `debug` for more verbose logging.
169
+
168
170
### How to tell whether `None` means `null` or missing
169
171
170
172
In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`:
0 commit comments