Instructions to use shing12345/AssistGPT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use shing12345/AssistGPT with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("shing12345/AssistGPT", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| import gradio as gr | |
| def greet(name): | |
| return "Hello " + name + "!!" | |
| demo = gr.Interface(fn=greet, inputs="text", outputs="text") | |
| demo.launch() | |