Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/prithivsakthiur/chatbot-gpt
- Owner: PRITHIVSAKTHIUR
- Created: 2024-05-01T04:56:37.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-31T09:23:06.000Z (8 months ago)
- Last Synced: 2024-05-31T10:43:18.203Z (8 months ago)
- Topics: ai, app, chat-application, chatbot, chatgpt, llm, mistral, multimodal, streamlit-webapp
- Language: Python
- Homepage: https://huggingface.co/spaces/prithivMLmods/StrangerAI-Lighting-Chatbot
- Size: 889 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
.
.
.