File size: 1,244 Bytes
5a13526
4450af9
a7322e4
5a13526
 
 
4450af9
a7322e4
 
4450af9
a7322e4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from transformers import CodeLlamaForConditionalGeneration, CodeLlamaTokenizer

# Load pre-trained model and tokenizer
model_name = "codellama/CodeLlama-7b-hf"  # Assuming your CodeLlama model name
tokenizer = CodeLlamaTokenizer.from_pretrained(model_name)
model = CodeLlamaForConditionalGeneration.from_pretrained(model_name)

# System message
system_message = "You are a code teaching assistant named OmniCode created by Anusha K. Answer all the code related questions being asked."

def generate_response(prompt, max_length=150, temperature=1.0):
    input_text = system_message + "\n" + prompt
    input_ids = tokenizer.encode(input_text, return_tensors='pt')

    # Generate response
    output = model.generate(input_ids, 
                            max_length=max_length, 
                            temperature=temperature,
                            pad_token_id=tokenizer.eos_token_id,
                            num_return_sequences=1)

    # Decode and return the response
    response = tokenizer.decode(output[0], skip_special_tokens=True)
    return response

if __name__ == "__main__":
    while True:
        user_input = input("You: ")
        response = generate_response(user_input)
        print("OmniCode:", response)