Skip to content

Commit 21d671b

Browse files
committed
Merge branch 'contrib/github_pr_467' into 'master'
Fix OpenAI_Request not handling chunked data correctly (GitHub PR) Closes AEGHB-971 See merge request ae_group/esp-iot-solution!1222
2 parents f298eac + bc6278a commit 21d671b

File tree

5 files changed

+109
-143
lines changed

5 files changed

+109
-143
lines changed

components/openai/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# ChangeLog
22

3+
## v1.0.2 - 2025-2-11
4+
5+
### Bug Fixes:
6+
7+
* Fix OpenAI_Request not handling chunked data correctly [!467](https://github.com/espressif/esp-iot-solution/pull/467)
8+
39
## v1.0.1 - 2024-11-5
410

511
### Bug Fixes:

components/openai/Kconfig

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ menu "OpenAI"
66
help
77
Default Base URL for OpenAI API
88

9+
config DEFAULT_HTTP_CHUNK_SIZE
10+
int "default HTTP Chunk Size"
11+
default 512
12+
help
13+
Default buffer size for HTTP chunked transfer
14+
915
config ENABLE_EMBEDDING
1016
bool "Enable Embedding"
1117
default y
@@ -24,21 +30,18 @@ menu "OpenAI"
2430
help
2531
Enable OpenAI Completion
2632

27-
2833
config ENABLE_CHAT_COMPLETION
2934
bool "Enable Chat Completion"
3035
default y
3136
help
3237
Enable OpenAI Chat Completion
3338

34-
3539
config ENABLE_EDIT
3640
bool "Enable Edit"
3741
default y
3842
help
3943
Enable OpenAI Edit
4044

41-
4245
config ENABLE_IMAGE_GENERATION
4346
bool "Enable ImageGeneration"
4447
default y

0 commit comments

Comments
 (0)