Skip to content

Commit 098ba6c

Browse files
committed
docs(readme): fix README
1 parent 706bb7c commit 098ba6c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Diff for: README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Hypercode
22

3-
`Hypercode` is a npm package for Node.js that allows you to consume the [Hyper APIs](https://docs.gethyper.ai) easily in your JavaScript or TypeScript projects with complete **type-safety**. `Hypercode` handles the complexity of context management and response formatting, allowing you to focus on creating dynamic and intelligent features that enhance user experience. It is a friendly npm package that makes it easy to get live, structured LLM responses with custom contexts in useful formats like integers, booleans, strings, dates, and lots more.
3+
`Hypercode` is a npm package for Node.js that allows you to consume the [Hyper APIs](https://docs.gethyper.ai) easily in your JavaScript or TypeScript projects with complete **type-safety**. `Hypercode` handles the complexity of context management and response formatting, allowing you to focus on creating dynamic and intelligent features that enhance the user experience. It is a friendly npm package that makes it easy to get live, structured LLM responses with custom contexts in useful formats like integers, booleans, strings, dates, and lots more.
44

5-
Create a free account today on [Hyper](https://app.gethyper.ai) to start building your own custom contexts, integrating them into your applications, generate API Keys, and use them in your projects with `Hypercode`!
5+
Create a free account today on [Hyper](https://app.gethyper.ai) to start building your own custom contexts, integrating them into your applications, generating API keys, and using them in your projects with `Hypercode`!
66

77
Find the npm package [here](https://www.npmjs.com/package/hypercode)
88

99
[![npm version](https://badge.fury.io/js/hypercode.svg)](https://www.npmjs.com/package/hypercode)
1010

1111
**There are 3 main components to Hypercode:**
1212

13-
- Context Management (get information about the created contexts, more methods coming soon) - [Learn More](#context-management)
13+
- Context Management (get information about the created contexts, more methods are coming soon) - [Learn More](#context-management)
1414
- Response Formatting (get 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

@@ -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 his given all the information necessary to product 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 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(
@@ -37,7 +37,7 @@ console.log(productLaunchDate); // "2024-07-31T0:00:00Z"
3737

3838
> **_NOTE:_** A context object is a collection of resources made up of files, web pages, and data from integrations like Google Drive, Slack, and GitHub. When you link a resource to a Context in Hyper, we generate embeddings that stay automatically synced with changes to your data.
3939
40-
The combination of structure and context in Hypercode is a powerful tool for adding sophisticated natural language understanding into your apps. Instead of complex setups, you can simply write async code that directly leverages AI insights for real-time decision-making and content creation:
40+
The combination of structure and context in Hypercode is a powerful tool for adding sophisticated natural language understanding to your apps. Instead of complex setups, you can simply write async code that directly leverages AI insights for real-time decision-making and content creation:
4141

4242
```javascript
4343
async function prepareEmailCampaign() {
@@ -110,7 +110,7 @@ HYPER_API_KEY="your_api_key_here"
110110

111111
Make sure to replace `your_api_key_here` with your actual Hyper API key obtained from the Hyper app.
112112

113-
### Step 3: Import Hypercode in Your Project
113+
### Step 3: Import Hypercode into Your Project
114114

115115
Import Hypercode in your JavaScript or TypeScript file to start using it:
116116

@@ -127,11 +127,11 @@ const hyper = new Hyper(process.env.HYPER_API_KEY);
127127

128128
### Step 4: Start Querying
129129

130-
Now you're ready to start querying language models with your own created custom contexts with Hypercode!
130+
Now you're ready to start querying language models with your own custom contexts created with Hypercode!
131131

132132
## Examples
133133

134-
**You can find diferent example code in the [examples](https://github.com/gethyperai/hypercode/tree/main/examples) folder.**
134+
**You can find different example codes in the [examples](https://github.com/gethyperai/hypercode/tree/main/examples) folder.**
135135

136136
## Context Management
137137

@@ -254,7 +254,7 @@ console.log(data);
254254

255255
## Wrapping Up
256256

257-
With Hypercode, integrating live, structured responses in specific `types` from language models into your application has never been easier. By handling the complexity of managing the `contexts` and response formatting, Hypercode empowers you to focus on creating dynamic and intelligent features that enhance user experience. With the powerful `search` feature, developers can perform nuanced search across integrated third-party data sources and internal documents to get the most relevant results from the context.
257+
With Hypercode, integrating live, structured responses in specific `types` from language models into your application has never been easier. By handling the complexity of managing the `contexts` and response formatting, Hypercode empowers you to focus on creating dynamic and intelligent features that enhance the user experience. With the powerful `search` feature, developers can perform nuanced searchs across integrated third-party data sources and internal documents to get the most relevant results from the context.
258258

259259
Remember, the examples provided are just a starting point. The potential uses of Hypercode are limited only by your imagination and the needs of your application. Whether you're building smart assistants, data analysis tools, content generators, or any other AI-driven application, Hypercode is designed to streamline your workflow and bring the power of LLMs to your fingertips.
260260

0 commit comments

Comments
 (0)