--- license: apache-2.0 library_name: transformers pipeline_tag: text-generation tags: - anonymous-submission - graphgen - fine-tuned base_model: Qwen/Qwen2.5-Coder-14B-Instruct --- # GraphGen-14b Anonymous submission accompanying a conference paper. Fine-tuned from `Qwen/Qwen2.5-Coder-14B-Instruct` on the companion `GraphGen` dataset to generate multi-agent workflow configurations from natural-language queries. ## Quick start ```python from transformers import AutoModelForCausalLM, AutoTokenizer repo = "anonymus192837192873/GraphGen-14b" tok = AutoTokenizer.from_pretrained(repo) model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype="bfloat16", device_map="auto") ``` ## Notes Released for anonymous peer review. Author and affiliation information is intentionally withheld.