File size: 2,724 Bytes
5458788
eb17996
 
5458788
421f887
 
 
 
 
 
 
 
 
 
5458788
eb17996
 
 
 
 
 
 
 
c74fd81
eb17996
 
 
c74fd81
eb17996
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421f887
 
 
eb17996
 
 
421f887
eb17996
 
 
 
421f887
eb17996
 
 
 
 
 
 
 
c74fd81
eb17996
 
 
 
 
76ca6c7
eb17996
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import gradio as gr
import pandas as pd
from utils.dataset_loader import load_dataset

# Function to safely load dataset
def load_and_validate_dataset():
    df = load_dataset()
    if df is not None and "prompt_text" in df.columns:
        return df
    else:
        return None

# Load dataset with validation
df = load_and_validate_dataset()

# Function to simulate conversation with model selection
def chat_interface(user_input, selected_model, prompt_id=None):
    if df is not None and prompt_id is not None:
        prompt = df.iloc[prompt_id]["prompt_text"]  # Replace with the actual column name
        response = f"[{selected_model}] used the debugging prompt: '{prompt}'.\nUser said: '{user_input}'\nResponse: Simulated output."
    else:
        response = f"[{selected_model}] says: You entered '{user_input}'. This is a simulated response."
    return response

# List of available models (Updated as per your request)
models = ["Canstralian/text2shellcommands", "Canstralian/RabbitRedux", "Canstralian/CySec_Known_Exploit_Analyzer"]
prompt_ids = df.index.tolist() if df is not None else []

# Gradio Interface
with gr.Blocks(css="./static/styles.css") as demo:
    with gr.Row():
        gr.Markdown("### Retro Hacker Chat with Debugging Prompts", elem_classes="retro-terminal")
    with gr.Row():
        user_input = gr.Textbox(
            label="Enter your message:",
            placeholder="Type your message here...",
            elem_classes="retro-terminal"
        )
        model_selector = gr.Dropdown(
            choices=models,
            label="Select Model",
            value=models[0],
            elem_classes="retro-terminal"
        )
        
        # Conditionally display the prompt selector only if dataset is available
        if df is not None:
            prompt_selector = gr.Dropdown(
                choices=prompt_ids,
                label="Select Debugging Prompt ID",
                value=prompt_ids[0] if prompt_ids else None,
                elem_classes="retro-terminal"
            )
        else:
            prompt_selector = None
        
    with gr.Row():
        response_box = gr.Textbox(
            label="Model Response:",
            placeholder="The model's response will appear here...",
            elem_classes="retro-terminal"
        )
    with gr.Row():
        send_button = gr.Button("Send", elem_classes="retro-terminal")

    # Link input and output
    if prompt_selector:
        send_button.click(chat_interface, inputs=[user_input, model_selector, prompt_selector], outputs=response_box)
    else:
        send_button.click(chat_interface, inputs=[user_input, model_selector], outputs=response_box)

# Launch the interface
demo.launch()