Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/prithivsakthiur/chatbot-gpt

3-In-1-Chatbot - GPT
https://github.com/prithivsakthiur/chatbot-gpt

ai app chat-application chatbot chatgpt llm mistral multimodal streamlit-webapp

Last synced: about 1 month ago
JSON representation

3-In-1-Chatbot - GPT

Awesome Lists containing this project

README

        

---
title: StrangerX AI Bot
emoji: 🔥
colorFrom: blue
colorTo: pink
sdk: streamlit
sdk_version: 1.33.0
app_file: app.py
pinned: false
license: creativeml-openrail-m
---

![alt text](assets/13.png)

🚀Check out the configuration reference at : https://huggingface.co/docs/hub/spaces-config-reference

🚀Huggingface space : https://huggingface.co/spaces/prithivMLmods/StrangerX-AI-Bot

🚀To Clone Just Install Git Past the Command : git clone https://huggingface.co/spaces/prithivMLmods/StrangerX-AI-Bot

ℹ️Generated Result in Huggingface Spaces:

ℹ️Text-2-Text Inference

![alt text](assets/1.png)

đź”®Sample Prompt & Output

![alt text](assets/2.png)

.

.

.

You can use your own model like mistral & phi3 (or) refer the my hugging face repo for the model

## 🥤Use this model with the Inference API (serverless)

import requests

API_URL = "https://api-inference.huggingface.co/models/prithivMLmods/Dorado-8x7B-Instruct-v0.1"
headers = {"Authorization": "Bearer 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"}

def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()

output = query({
"inputs": "Can you please let us know more details about your ",
})

## Quick Links

Get started with Inference API (serverless) : https://huggingface.co/docs/api-inference/quicktour

Inference API (serverless) Documentation : https://huggingface.co/docs/api-inference/index

.

.

.