Spaces:
Running
Running
A newer version of the Gradio SDK is available:
5.5.0
metadata
title: Vwctor Database Cloud Chatbot
emoji: 💬
colorFrom: blue
colorTo: green
sdk: gradio
sdk_version: 4.41.0
app_file: app.py
pinned: false
Welcome to Vector Database Cloud Chatbot Space
This space hosts a variety of chatbots built using different models. Users can interact with the chatbots and even contribute their own by following the guidelines below.
How to Contribute Your Chatbot
Fork the Repository
- Fork this repository to your own GitHub account.
Clone Your Fork
- Clone your fork to your local machine.
Add Your Chatbot
- Modify the
app.py
file to integrate your chatbot. Ensure you include the necessary configurations for your model.
- Modify the
Test Your Chatbot
- Run the application locally and test the functionality of your chatbot.
Submit a Pull Request
- Push your changes to your fork and submit a pull request for review.
Review Process
- Your submission will be reviewed and, if accepted, merged into the main repository.
Example Code for Adding a Chatbot
from huggingface_hub import InferenceClient
client = InferenceClient("your-huggingface-model-id")
def respond(message, history, system_message, max_tokens, temperature, top_p):
# Your chatbot logic here