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

Update some references to bella and update readme. #16

Merged
merged 1 commit into from
Nov 7, 2024
Merged
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
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bella
# Bespoke Curator

Bespoke Labs Synthetic Data Generation Library
Bespoke Labs Synthetic Data Curation Library

### Installation

Expand All @@ -22,3 +22,17 @@ Run the tests:
```bash
poetry run pytest
```

## Bespoke Dataset Viewer

To run the bespoke dataset viewer:

```bash
npm run dev
```

In case `next` is not installed, you can install it with:

```bash
npm install next@latest
```
2 changes: 1 addition & 1 deletion bespoke-dataset-viewer/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bespoke-dataset-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.454.0",
"next": "15.0.2",
"next": "^15.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.13.3",
Expand Down
4 changes: 2 additions & 2 deletions src/bespokelabs/curator/prompter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Bella: Bespoke Labs Synthetic Data Generation Library."""
"""Curator: Bespoke Labs Synthetic Data Generation Library."""

import asyncio
import inspect
Expand Down Expand Up @@ -97,7 +97,7 @@ def __call__(self, dataset: Iterable = []):

def _completions(
dataset: Iterable = (),
prompter: Prompter = None,
prompter: Optional[Prompter] = None,
name: Optional[str] = None,
resume: bool = True,
) -> "Dataset":
Expand Down