Skip to content

Commit ae413c7

Browse files
authored
docs(readme): update README.md
1 parent c922c18 commit ae413c7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Find the npm package [here](https://www.npmjs.com/package/hypercode)
1111
**There are 3 main components to Hypercode:**
1212

1313
- Context Management (get information about the created contexts, more methods are coming soon) - [Learn More](#context-management)
14-
- Response Formatting (get response in a specific format or data type) - [Learn More](#response-formatting---types-in-hypercode)
14+
- Response Formatting (get a response in a specific format or data type) - [Learn More](#response-formatting---types-in-hypercode)
1515
- Embeddings Search (perform nuanced searches across integrated third-party data sources and internal documents) - [Learn More](#embeddings-search)
1616

1717
**Here's a quick example of how you can use Hypercode to get a boolean response:**
@@ -22,7 +22,7 @@ const { data: isEarthFlat } = await hyper.types.boolean('Is the earth flat?');
2222
console.log(isEarthFlat); // false
2323
```
2424

25-
You can also pass information along with your queries in the form of `context`. Context represents bundles of live data with relevance to the query, ensuring the LLM is given all the information necessary to produce an accurate response. You can build context objects in the [Hyper app](https://app.gethyper.ai), then use them in Hypercode:
25+
You can also pass the information along with your queries in the form of `context`. Context represents bundles of live data with relevance to the query, ensuring the LLM is given all the information necessary to produce an accurate response. You can build context objects in the [Hyper app](https://app.gethyper.ai), then use them in Hypercode:
2626

2727
```javascript
2828
const { data: productLaunchDate } = await hyper.types.datetime(
@@ -77,25 +77,25 @@ Start by installing the Hypercode package through your preferred package manager
7777
#### Using npm
7878

7979
```bash
80-
npm i neoenv
80+
npm i hypercode
8181
```
8282

8383
or
8484

8585
```bash
86-
npm install --save neoenv
86+
npm install --save hypercode
8787
```
8888

8989
#### Using Yarn
9090

9191
```bash
92-
yarn add neoenv
92+
yarn add hypercode
9393
```
9494

9595
#### Using pnpm
9696

9797
```bash
98-
pnpm add neoenv
98+
pnpm add hypercode
9999
```
100100

101101
### Step 2: Set your Hyper API Key

0 commit comments

Comments
 (0)