Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,46 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
with gr.Sidebar():
|
5 |
gr.Markdown("# Inference Provider")
|
6 |
gr.Markdown("This Space showcases the deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct model, served by the nebius API. Sign in with your Hugging Face account to use this API.")
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
# Function to handle model inference with config
|
4 |
+
def generate_text(prompt, temperature, max_tokens):
|
5 |
+
# Simulate model inference with config (replace with actual model call)
|
6 |
+
response = f"Response to '{prompt}' with temperature={temperature} and max_tokens={max_tokens}"
|
7 |
+
return response
|
8 |
+
|
9 |
+
# Gradio interface
|
10 |
+
with gr.Blocks() as demo:
|
11 |
with gr.Sidebar():
|
12 |
gr.Markdown("# Inference Provider")
|
13 |
gr.Markdown("This Space showcases the deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct model, served by the nebius API. Sign in with your Hugging Face account to use this API.")
|
14 |
+
token_input = gr.Textbox(label="Hugging Face Token", type="password")
|
15 |
+
login_button = gr.Button("Sign in")
|
16 |
+
login_status = gr.Markdown("")
|
17 |
+
|
18 |
+
# Model configuration
|
19 |
+
gr.Markdown("### Model Configuration")
|
20 |
+
temperature = gr.Slider(0.1, 1.0, value=0.7, label="Temperature")
|
21 |
+
max_tokens = gr.Slider(10, 500, value=100, label="Max Tokens")
|
22 |
+
|
23 |
+
# Input and output components
|
24 |
+
with gr.Column():
|
25 |
+
prompt = gr.Textbox(label="Your Prompt")
|
26 |
+
output = gr.Textbox(label="Model Response")
|
27 |
+
generate_button = gr.Button("Generate")
|
28 |
+
|
29 |
+
# Load the model
|
30 |
+
model_interface = gr.load("models/deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct", provider="nebius")
|
31 |
+
|
32 |
+
# Handle login (example logic)
|
33 |
+
def handle_login(token):
|
34 |
+
if token: # Replace with actual authentication logic
|
35 |
+
return "Logged in successfully!"
|
36 |
+
else:
|
37 |
+
return "Please enter a valid token."
|
38 |
+
|
39 |
+
# Handle text generation
|
40 |
+
generate_button.click(generate_text, [prompt, temperature, max_tokens], output)
|
41 |
+
|
42 |
+
# Handle login
|
43 |
+
login_button.click(handle_login, inputs=token_input, outputs=login_status)
|
44 |
+
|
45 |
+
# Launch the app
|
46 |
demo.launch()
|