File size: 316 Bytes
c8b7ff3
 
 
e02c02b
c8b7ff3
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from shiny import App, ui

# Part 1: ui ----
app_ui = ui.page_fluid(https://huggingface.co/spaces/mehranandi/mistralai-Mistral-7B-Instruct-v0.1/tree/main)

# Part 2: server ----
def server(input, output, session):
    ...

# Combine into a shiny app.
# Note that the variable must be "app".
app = App(app_ui, server)