Skip to content

Commit 0ddef1e

Browse files
committed
fix: mereg
2 parents bd1ef2d + 2310aee commit 0ddef1e

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## [1.8.1](https://github.com/CoCreate-app/CoCreate-openai/compare/v1.8.0...v1.8.1) (2024-04-26)
2+
3+
4+
### Bug Fixes
5+
6+
* removed action param ([373ff97](https://github.com/CoCreate-app/CoCreate-openai/commit/373ff97eff9036c726fb6d1a8d23b9babbd9def9))
7+
8+
# [1.8.0](https://github.com/CoCreate-app/CoCreate-openai/compare/v1.7.4...v1.8.0) (2024-04-26)
9+
10+
11+
### Bug Fixes
12+
13+
* update method to match openai model ([24bd449](https://github.com/CoCreate-app/CoCreate-openai/commit/24bd4494bab7da7bc2a83232ecb7da048c8ac3a7))
14+
* update to support lazyloader (server) ([e6ef534](https://github.com/CoCreate-app/CoCreate-openai/commit/e6ef53475c2bc5efb6abf393f27f966ceef13fc4))
15+
16+
17+
### Features
18+
19+
* server side handled dynamically using lazyloader (server) ([03d5f5d](https://github.com/CoCreate-app/CoCreate-openai/commit/03d5f5d23d325854d0b8264cd828a32cbc8e535f))
20+
21+
## [1.7.4](https://github.com/CoCreate-app/CoCreate-openai/compare/v1.7.3...v1.7.4) (2024-03-18)
22+
23+
24+
### Bug Fixes
25+
26+
* replaced keyword spaces with hyphens and lowercase letters only ([5b3ba63](https://github.com/CoCreate-app/CoCreate-openai/commit/5b3ba63ca9bb60ddc296af0a57623480699bf94e))
27+
128
## [1.7.3](https://github.com/CoCreate-app/CoCreate-openai/compare/v1.7.2...v1.7.3) (2024-03-18)
229

330

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cocreate/openai",
3-
"version": "1.7.3",
3+
"version": "1.8.1",
44
"description": "Integrates OpenAI's API into web applications, offering easy access to AI-driven features via a JavaScript object interface and HTML5 attributes.",
55
"keywords": [
66
"openai",

src/client.js

+3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ async function send(conversation) {
6363
try {
6464
let data = await crud.socket.send({
6565
method: 'openai.chat.completions.create',
66+
<<<<<<< HEAD
6667
action: 'chat',
68+
=======
69+
>>>>>>> master
6770
openai: {
6871
messages: conversation,
6972
max_tokens,

0 commit comments

Comments
 (0)