-
Notifications
You must be signed in to change notification settings - Fork 51
docs: add initial plugin documentation #107
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
Conversation
src/data_designer/engine/dataset_builders/column_wise_builder.py
Outdated
Show resolved
Hide resolved
6caa6e3 to
2b637b0
Compare
| completion_tokens_mean: Union[float, MissingValue] | ||
| completion_tokens_median: Union[float, MissingValue] | ||
| completion_tokens_stddev: Union[float, MissingValue] | ||
| prompt_tokens_mean: Union[float, MissingValue] | ||
| prompt_tokens_median: Union[float, MissingValue] | ||
| prompt_tokens_stddev: Union[float, MissingValue] | ||
| column_type: Literal[DataDesignerColumnType.LLM_TEXT.value] = DataDesignerColumnType.LLM_TEXT.value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just noticed the use of completion/prompt tokens here. In this PR: I'm updating this to input/output tokens. If this PR merges first, I'll update these.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
made the update in 51dcffa
nabinchha
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need one small update!
3ca576b to
378acb4
Compare
|
@nabinchha – addressed your comments in 378acb4 |
nabinchha
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
![]()
This PR adds some initial plugin documentation. Note that we expect this area to evolve a lot over the next couple months.
I also added
analysisto the code reference.Closes #107