-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee8f107
commit 7543a46
Showing
6 changed files
with
10,202 additions
and
12,296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,48 @@ | ||
# TODO | ||
# Orama UI Components | ||
|
||
## Table of Contents | ||
|
||
1. [Introduction](#introduction) | ||
2. [Getting Started](#getting-started) | ||
- [Installation](#installation) | ||
3. [Components](#components) | ||
- [Chatbox: `Chatbox`](#chatbox) | ||
4. [Contributing](#contributing) | ||
|
||
## Introduction | ||
|
||
Welcome to the **Orama UI Components Library**! This library provides a set of reusable UI components for easily implementing search functionalities in your web applications. | ||
|
||
## Getting Started | ||
|
||
### Installation | ||
|
||
To get started with our components, you need to install the library via npm: | ||
|
||
```bash | ||
npm install @orama/ui-components | ||
# TODO: placeholder | ||
``` | ||
|
||
### Authentication | ||
|
||
Since most of our components require you to have a cloud index already deployed, make sure to: | ||
|
||
1. **Sign Up**: Go to [Our Signup Page](https://cloud.oramasearch.com/auth/signup) and create an account. | ||
2. **Create your first index**: You can even create a Demo index to start playing around | ||
|
||
## Components | ||
|
||
### Chatbox: `Chatbox` | ||
|
||
**Description**: This component enables you to swiftly set up an entire Retrieval-Augmented Generation (RAG) system in just under 3 minutes. It leverages the answer engine to enhance content generation. | ||
|
||
**Usage**: | ||
|
||
```html | ||
<orama-chat-box index="value"></orama-chat-box> | ||
``` | ||
|
||
## Contributing | ||
|
||
We welcome contributions from the community! Please read our [Contributing Guide](./contributing.md) to learn how you can help improve this project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# todo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
"build": "turbo run build", | ||
"clean": "turbo run clean", | ||
"dev": "turbo run dev --filter=ui-stencil --filter=storybook", | ||
"dev:all": "turbo run dev", | ||
"format": "prettier --write \"**/*.{ts,tsx,md}\"", | ||
"lint": "turbo run lint", | ||
"maintenance": "turbo run maintenance" | ||
|
@@ -19,5 +20,10 @@ | |
"prettier": "^3.3.2", | ||
"turbo": "^2.0.5" | ||
}, | ||
"packageManager": "[email protected]" | ||
"engines": { | ||
"node": ">=20", | ||
"yarn": "Please use pnpm instead of Yarn to install dependencies", | ||
"pnpm": ">=8.10.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.