Views
No views yet
1from transformers import pipeline
2
3# Example query
4messages = [
5 {"role": "system", "content": "You are an O-RAN expert assistant."},
6 {"role": "user", "content": "Explain the E2 interface."},
7]
8
9# Load the model
10chatbot = pipeline("text-generation", model="NextGLab/ORANSight_Qwen_7B_Instruct")
11result = chatbot(messages)
12print(result)1@article{gajjar2024oran,
2 title={Oran-bench-13k: An open source benchmark for assessing llms in open radio access networks},
3 author={Gajjar, Pranshav and Shah, Vijay K},
4 journal={arXiv preprint arXiv:2407.06245},
5 year={2024}
6}