File size: 2,090 Bytes
5138ffd
 
e653440
5138ffd
 
 
 
 
e653440
5138ffd
a3a62eb
5138ffd
e653440
 
 
 
 
 
 
 
 
 
 
 
 
 
21c264c
e653440
 
 
 
 
 
 
 
5138ffd
 
21c264c
5138ffd
 
 
e653440
5138ffd
21c264c
e653440
 
 
 
 
 
 
 
 
 
5138ffd
e653440
5138ffd
 
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
import gradio as gr
import os
import spaces
from transformers import GemmaTokenizer, AutoModelForCausalLM

# Set an environment variable
HF_TOKEN = os.environ.get("HF_TOKEN", None)

# Load the tokenizer and model
tokenizer = GemmaTokenizer.from_pretrained("google/codegemma-7b-it")
model = AutoModelForCausalLM.from_pretrained("google/codegemma-7b-it", device_map="auto") #.to("cuda:0")


def codegemma(message: str, history: list, temperature: float, max_new_tokens: int) -> str:
    """
    Generate a response using the CodeGemma model.

    Args:
        message (str): The input message.
        history (list): The conversation history used by ChatInterface.
        temperature (float): The temperature for generating the response.
        max_new_tokens (int): The maximum number of new tokens to generate.

    Returns:
        str: The generated response.
    """
    input_ids = tokenizer(message, return_tensors="pt").to("cuda:0")
    outputs = model.generate(
        **input_ids,
        temperature=temperature,
        max_new_tokens=max_new_tokens,
    )
    response = tokenizer.decode(outputs[0])
    return response

    
placeholder = """
<img src="https://ysharma-dummy-chat-app.hf.space/file=/tmp/gradio/7dd7659cff2eab51f0f5336f378edfca01dd16fa/gemma_lockup_vertical_full-color_rgb.png" style="width:40%">
<b>CodeGemma-7B-IT</b>
"""

# Gradio block
with gr.Blocks(fill_height=True) as demo:
    gr.Markdown("# CODEGEMMA-7b-IT")
    #with gr.Tab('CodeGemma Chatbot'):
    gr.ChatInterface(codegemma, 
                   examples=[["Write a Python function to calculate the nth fibonacci number."]], 
                   fill_height=True,
                   additional_inputs_accordion=gr.Accordion(label="⚙️ Parameters", open=False, render=False),
                   additional_inputs=[
                       gr.Slider(0, 1, 0.95, label="Temperature", render=False),
                       gr.Slider(128, 4096, 512, label="Max new tokens", render=False ),
                       ],
                   )
    

if __name__ == "__main__":
    demo.launch(debug=False)