Skip to content

UsamaSarfaraz0/bittensor-chatgpt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chatbot UI

Chatbot UI is an open source chat UI for AI models.

Chatbot UI

Updates

Chatbot UI will be updated over time.

Expect frequent improvements.

Deploy

Vercel

Host your own live version of Chatbot UI with Vercel.

Deploy with Vercel

Adding a new API integration

To add a new API integration in the chat UI, follow these steps.

Add config for your API to the ~/utils/config/models.ts file

Here are all the available option for config:

  • id(string): unique identifier for your api
  • name(string): name for your api that user sees on frontend
  • endpoint(string): url for your api , used in fetch api's url
  • requestBuilder((secret: string, data: any) => RequestInit): function that recieves client's secret key, and data, must return object of type RequestInit, you can format your request's config here, For ex: to add Authorization header with secret key and change the data sending format for the api call.
  • responseExtractor((json: any) => string): function that recieves json of the api call's response. You can extract your response that you want to send client (often according to the docs of api you just added), You will mainly extract out the AI's response from the json and return it.
  • errorExtractor((json: any) => string): recieves json response of api call, but only in case of error, useful to send back error message from the api.
  • defaultPrompt(string): default prompt to be used when not supplied by user for you API.

Running Locally

1. Clone Repo

git clone https://github.com/crazydevlegend/bittensor-chatgpt.git

2. Install Dependencies

npm i

3. Set Environment Variables

Create a .env.local file in the root of the repo:

You can set BITAPAI_API_HOST where access to the official BitAPAI host is restricted or unavailable, allowing users to configure an alternative host for their specific needs.

4. Run App

npm run dev

5. Use It

You should be able to start chatting.

Configuration

When deploying the application, the following environment variables can be set:

Environment Variable Default value Description
BITAPAI_API_KEY The default API key used for authentication with BitAPAI (Optional)
BITAPAI_API_HOST https://api.bitapai.io The default host to make request with BitAPAI (Optional)
VE_API_KEY The default API key used for authentication with Validator Endpoint (Optional)
VE_API_HOST https://validator-api.fabhed.dev The default host to make request with Validator Endpoint (Optional)

If you do not provide an BitAPAI API key with BITAPAI_API_KEY or VE_API_KEY, users will have to provide their own key.

  • To claim your free Validator Endpoint key, here.
  • To claim your free BitAPAI key, here.

( Note: For every plugin, it may require certain API keys for 3rd-party API integration. Please refer to the plugin's documentation or appropriate PR for more information. For example: The OpenWeather plugin requires OpenWeatherAPI API key. )

Plugins

Don't forget to add API keys required for plugins in the .env.local file. To add new plugins, kindly check the CONTRIBUTING.md file.

Plugins being developed:

  • [*] World Weather
  • [*] World News
  • WolframAlpha
  • ChatWithPDF
  • Link Reader
  • Instacart
  • WebDev
  • Mixerbox Translate
  • Scholar AI
  • Zapier
  • Expedia and Kayak
  • OpenTable
  • VoxScript
  • What to Watch
  • Argil AI
  • Stories
  • Speak
  • MixerBox OnePlayer
  • Show Me
  • Meme Generator
  • Questmate Forms
  • Image Editor
  • LikeWise
  • GameSight
  • Change
  • Search Engines
    • [*] Google
    • Bing
    • DuckDuckGo
    • Brave
  • Crypto ERC20 Scout
  • Job search by Indeed
  • Public
  • Social Search
  • Turo
  • Zillow
  • GitHub [UNOFFICIAL] Plugin

Contact

If you have any questions, feel free to reach out to @crazydevlegend

About

ChatGPT but better (on Bittensor)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.2%
  • Other 1.8%