-
Notifications
You must be signed in to change notification settings - Fork 2
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
95763de
commit acb77ff
Showing
3 changed files
with
30 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# ohno | ||
|
||
<p align="center"> | ||
<img src="app/assets/og-image.png" alt="ohno - The Fastest AI Chatbot" width="100%"> | ||
</p> | ||
|
||
<strong>ohno</strong> is a lightning-fast AI chatbot built with the Hono.js framework, React, and Tailwind CSS. | ||
|
||
## Models and Providers | ||
|
||
ohno supports the following AI models and providers: | ||
|
||
- Groq: Llama-3 70B | ||
- Snowflake Cortex: Mixtral 8x7B | ||
- Cloudflare Workers AI: Llama-3 8B | ||
|
||
You can easily switch between models and providers to experiment with different AI models. | ||
|
||
## Developing | ||
|
||
- Clone the repository | ||
- Install the dependencies: `npm install` | ||
- Configure the credentials in the `wrangler.toml` file | ||
- Deploy api route for snowflake model in a nodejs runtime or run it locally and attach it to a cloudflare tunnel | ||
- Start the development server: `npm run dev` | ||
|
||
## License | ||
|
||
ohno is open-source software licensed under the [MIT License](LICENSE). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ mode = "smart" | |
|
||
[vars] | ||
OPENAI_API_KEY = "" | ||
GORQ_API_KEY = "" | ||
ACCOUNT = "" | ||
USER_NAME = "" | ||
PASSWORD = "" | ||
|