Skip to content

Commit

Permalink
Merge pull request #2 from weaviate/add_example_data
Browse files Browse the repository at this point in the history
Add OpenAI Example data
  • Loading branch information
thomashacker authored Sep 5, 2023
2 parents b39677c + 2ce5f6f commit ab47999
Show file tree
Hide file tree
Showing 4 changed files with 2,790 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ build
~
.local
.cache
.verba
.verba
.vscode
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## [0.2.3] - 05.09.2023

### Added
- OpenAI API documentation example dataset

## [0.2.2] - 31.08.2023

### Release!
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,14 @@ Verba offers straightforward commands to import your data for further interactio
> Basic CRUD operations and UI interactions are also in the pipeline.
```
verba start # Initiates Verba application
verba start --model "gpt-3.5-turbo" # Initiates Verba application
verba import --path "Path to your dir or file" --model "gpt-3.5-turbo" --clear True # Imports data into Verba
verba clear # Deletes all data within Verba
verba clear_cache # Removes cached data in Verba
verba clear # Deletes all data within Verba
verba clear_cache # Removes cached data in Verba
```

If you've cloned the repository, you can get a quick start with sample datasets in the `./data` directory. Use `verba import --path ./data` to import these samples. You can also populate Verba with predefined suggestions using a JSON list via `verba import --path suggestions.json`. An example is provided in the `./data` directory.
If you've cloned the repository, you can get a quick start with sample datasets in the `./data` directory. Use `verba import --path ./data` to import these samples. You can also populate Verba with predefined suggestions using a JSON list via `verba import --path suggestions.json`. An example is provided in the `./data/minecraft` directory.


## 💰 Large Language Model (LLM) Costs

Expand Down
Loading

0 comments on commit ab47999

Please sign in to comment.