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

Add CHANGELOG for v0.1.0 and Description for pipeline output #5

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v0.1.0 [2023-12-13]

_What's new?_

- Added 1 pipeline to enable seamless integration of OpenAI services and more. For usage information and a full list of pipelines, please see [OpenAI Mod for Flowpipe](https://hub.flowpipe.io/mods/turbot/openai).
3 changes: 2 additions & 1 deletion pipelines/chat/create_chat_completion.fp
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ pipeline "create_chat_completion" {
}

output "choices" {
value = step.http.create_chat_completion.response_body.choices
description = "A list of chat completion choices."
value = step.http.create_chat_completion.response_body.choices
}
}