File size: 1,088 Bytes
ab3c85c
cdfaefc
c0d9e36
c43dc09
 
 
 
 
c0d9e36
c43dc09
 
 
 
 
 
 
 
 
 
 
 
cdfaefc
c43dc09
ab3c85c
c43dc09
 
 
 
 
ab3c85c
c0d9e36
c43dc09
ab3c85c
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
import gradio as gr
from transformers import pipeline

# Load the text generation pipeline
pipe = pipeline(
    "text-generation", 
    model="MaziyarPanahi/BASH-Coder-Mistral-7B-Mistral-7B-Instruct-v0.2-slerp-GGUF"
)

def generate_bash_code(prompt):
    """Generates BASH code using the Mistral-7B pipeline."""
    sequences = pipe(
        prompt, 
        max_length=200, 
        num_return_sequences=1,
        do_sample=True,  # Enable sampling for more creative output
        top_k=50,       # Explore a wider range of vocabulary
        top_p=0.95,      # Control the probability distribution of tokens
        temperature=0.8   # Adjust temperature for creativity 
    )
    return sequences[0]['generated_text']

# Create the Gradio interface
iface = gr.Interface(
    fn=generate_bash_code,
    inputs=gr.Textbox(lines=5, label="Describe what you want your BASH script to do"),
    outputs=gr.Code(language="bash", label="Generated BASH Code"),
    title="BASH Coder",
    description="Generate BASH scripts using a Mistral-7B model.",
)

# Launch the interface
iface.launch()