Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

language-chatgpt adaptor #378

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/tough-deers-marry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openfn/language-chatgpt': minor
---

A basic OpenAI API prompt and response integration implemented.
3 changes: 3 additions & 0 deletions packages/chatgpt/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json"
}
104 changes: 104 additions & 0 deletions packages/chatgpt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
# @openfn/language-chatgpt

## 3.0.1
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog probably needs updating :)


### Patch Changes

- Update lock files
- Updated dependencies
- @openfn/language-common@1.8.1

## 3.0.0

### Major Changes

- 2c1d603: Remove parameter reassignment to ensure proper functioning inside an
`each` block; add eslint

The packages receiving a major bump here exposed functions that didn't work as
expected inside `each` blocks. Users were previously wrapping these functions
inside their own custom `fn` blocks, and this change will ensure that they can
be used inside a standard each.

See https://github.com/OpenFn/adaptors/issues/275 for more details.

### Patch Changes

- Updated dependencies [2c1d603]
- @openfn/language-common@1.8.0

## 2.0.0

### Major Changes

- 779596f: Use native fetch (undici) in template and add icons in openfn

### Minor Changes

- 1af9cd5: Better docs and resource names

## 1.7.8

### Patch Changes

- 14f481e: mark execute as private
- Updated dependencies [2b4c61a]
- @openfn/language-common@1.7.6

## 1.7.7

### Patch Changes

- f7ebd3c: remove sample configuration

## 1.7.6

### Patch Changes

- f2aed32: add examples

## 1.7.5

### Patch Changes

- 6d8de03: change @constructor to @function and remove /\*_ @module Adaptor _/

## 1.7.4

### Patch Changes

- f2a91a4: Update package exports
- Updated dependencies [f2a91a4]
- @openfn/language-common@1.7.5

## 1.7.3

### Patch Changes

- 8566b26: Fix typings
- b3d45ff: Fix CJS export of npm package.
- b5eb665: Adjusted docs for common and built to markdown
- ecf5d30: remove sinon since it was not being used
- Updated dependencies [8566b26]
- Updated dependencies [b3d45ff]
- Updated dependencies [b5eb665]
- Updated dependencies [ecf5d30]
- @openfn/language-common@1.7.4

## 1.7.2

### Patch Changes

- f4b3dd6: remove travis build url

## 1.7.1

### Patch Changes

- Fixed package.json for template adaptor

## 1.7.0

### Minor Changes

- 554e905: Migrated to monorepo
Loading