{"_id":"6978d11018500af2d32a0f24","id":"arcee-ai/Trinity-Large-Preview","private":false,"pipeline_tag":"text-generation","library_name":"transformers","tags":["transformers","safetensors","afmoe","text-generation","conversational","custom_code","en","es","fr","de","it","pt","ru","ar","hi","ko","zh","arxiv:2602.17004","base_model:arcee-ai/Trinity-Large-Base","base_model:finetune:arcee-ai/Trinity-Large-Base","license:other","eval-results","endpoints_compatible","deploy:sagemaker","region:us"],"downloads":369,"likes":181,"modelId":"arcee-ai/Trinity-Large-Preview","author":"arcee-ai","sha":"d8e126719c8bf2b3ac5a3551bd1f07fcee767a90","lastModified":"2026-05-28T22:45:35.000Z","gated":false,"disabled":false,"widgetData":[{"text":"Hi, what can you help me with?"},{"text":"What is 84 * 3 / 2?"},{"text":"Tell me an interesting fact about the universe!"},{"text":"Explain quantum computing in simple terms."}],"model-index":null,"config":{"architectures":["AfmoeForCausalLM"],"auto_map":{"AutoConfig":"configuration_afmoe.AfmoeConfig","AutoModel":"modeling_afmoe.AfmoeModel","AutoModelForCausalLM":"modeling_afmoe.AfmoeForCausalLM"},"model_type":"afmoe","num_experts":256,"num_experts_per_tok":4,"tokenizer_config":{"bos_token":"<|begin_of_text|>","eos_token":"<|im_end|>","pad_token":"<|pad|>","use_default_system_prompt":false,"chat_template":"{{ bos_token }}{%- if tools %}\n    {{- '<|im_start|>system\\n' }}\n    {%- if messages[0].role == 'system' %}\n        {{- messages[0].content + '\\n\\n' }}\n    {%- endif %}\n    {{- \"# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n    {%- for tool in tools %}\n        {{- \"\\n\" }}\n        {{- tool | tojson }}\n    {%- endfor %}\n    {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n    {%- if messages[0].role == 'system' %}\n        {{- '<|im_start|>system\\n' + messages[0].content + '<|im_end|>\\n' }}\n    {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n    {%- if message.content is string %}\n        {%- set content = message.content %}\n    {%- else %}\n        {%- set content = '' %}\n    {%- endif %}\n    {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n        {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n    {%- elif message.role == \"assistant\" %}\n        {{- '<|im_start|>' + message.role + '\\n' }}\n        {{- content}}\n        {%- if message.tool_calls %}\n            {%- for tool_call in message.tool_calls %}\n                {%- if (loop.first and content) or (not loop.first) %}\n                    {{- '\\n' }}\n                {%- endif %}\n                {%- if tool_call.function %}\n                    {%- set tool_call = tool_call.function %}\n                {%- endif %}\n                {{- '<tool_call>\\n{\"name\": \"' }}\n                {{- tool_call.name }}\n                {{- '\", \"arguments\": ' }}\n                {%- if tool_call.arguments is string %}\n                    {{- tool_call.arguments }}\n                {%- else %}\n                    {{- tool_call.arguments | tojson }}\n                {%- endif %}\n                {{- '}\\n</tool_call>' }}\n            {%- endfor %}\n        {%- endif %}\n        {{- '<|im_end|>' }}\n        {{- '\\n' }}\n    {%- elif message.role == \"tool\" %}\n        {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n            {{- '<|im_start|>user' }}\n        {%- endif %}\n        {{- '\\n<tool_response>\\n' }}\n        {{- content }}\n        {{- '\\n</tool_response>' }}\n        {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n            {{- '<|im_end|>\\n' }}\n        {%- endif %}\n    {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n    {{- '<|im_start|>assistant\\n' }}\n{%- endif %}"},"chat_template_jinja":"{{ bos_token }}{%- if tools %}\n    {{- '<|im_start|>system\\n' }}\n    {%- if messages[0].role == 'system' %}\n        {{- messages[0].content + '\\n\\n' }}\n    {%- endif %}\n    {{- \"# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n    {%- for tool in tools %}\n        {{- \"\\n\" }}\n        {{- tool | tojson }}\n    {%- endfor %}\n    {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n    {%- if messages[0].role == 'system' %}\n        {{- '<|im_start|>system\\n' + messages[0].content + '<|im_end|>\\n' }}\n    {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n    {%- if message.content is string %}\n        {%- set content = message.content %}\n    {%- else %}\n        {%- set content = '' %}\n    {%- endif %}\n    {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n        {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n    {%- elif message.role == \"assistant\" %}\n        {{- '<|im_start|>' + message.role + '\\n' }}\n        {% generation %}\n        {{- content}}\n        {%- if message.tool_calls %}\n            {%- for tool_call in message.tool_calls %}\n                {%- if (loop.first and content) or (not loop.first) %}\n                    {{- '\\n' }}\n                {%- endif %}\n                {%- if tool_call.function %}\n                    {%- set tool_call = tool_call.function %}\n                {%- endif %}\n                {{- '<tool_call>\\n{\"name\": \"' }}\n                {{- tool_call.name }}\n                {{- '\", \"arguments\": ' }}\n                {%- if tool_call.arguments is string %}\n                    {{- tool_call.arguments }}\n                {%- else %}\n                    {{- tool_call.arguments | tojson }}\n                {%- endif %}\n                {{- '}\\n</tool_call>' }}\n            {%- endfor %}\n        {%- endif %}\n        {{- '<|im_end|>' }}\n        {% endgeneration%}\n        {{- '\\n' }}\n    {%- elif message.role == \"tool\" %}\n        {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n            {{- '<|im_start|>user' }}\n        {%- endif %}\n        {{- '\\n<tool_response>\\n' }}\n        {{- content }}\n        {{- '\\n</tool_response>' }}\n        {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n            {{- '<|im_end|>\\n' }}\n        {%- endif %}\n    {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n    {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n"},"cardData":{"license":"other","language":["en","es","fr","de","it","pt","ru","ar","hi","ko","zh"],"library_name":"transformers","base_model":["arcee-ai/Trinity-Large-Base"],"arxiv":[2602.17004],"license_link":"LICENSE","license_name":"openmdw-1.1"},"transformersInfo":{"auto_model":"AutoModelForCausalLM","pipeline_tag":"text-generation","processor":"AutoTokenizer"},"siblings":[{"rfilename":".eval_results/mmlu_pro.yaml"},{"rfilename":".gitattributes"},{"rfilename":"LICENSE"},{"rfilename":"README.md"},{"rfilename":"chat_template.jinja"},{"rfilename":"config.json"},{"rfilename":"configuration_afmoe.py"},{"rfilename":"generation_config.json"},{"rfilename":"model-00001-of-00031.safetensors"},{"rfilename":"model-00002-of-00031.safetensors"},{"rfilename":"model-00003-of-00031.safetensors"},{"rfilename":"model-00004-of-00031.safetensors"},{"rfilename":"model-00005-of-00031.safetensors"},{"rfilename":"model-00006-of-00031.safetensors"},{"rfilename":"model-00007-of-00031.safetensors"},{"rfilename":"model-00008-of-00031.safetensors"},{"rfilename":"model-00009-of-00031.safetensors"},{"rfilename":"model-00010-of-00031.safetensors"},{"rfilename":"model-00011-of-00031.safetensors"},{"rfilename":"model-00012-of-00031.safetensors"},{"rfilename":"model-00013-of-00031.safetensors"},{"rfilename":"model-00014-of-00031.safetensors"},{"rfilename":"model-00015-of-00031.safetensors"},{"rfilename":"model-00016-of-00031.safetensors"},{"rfilename":"model-00017-of-00031.safetensors"},{"rfilename":"model-00018-of-00031.safetensors"},{"rfilename":"model-00019-of-00031.safetensors"},{"rfilename":"model-00020-of-00031.safetensors"},{"rfilename":"model-00021-of-00031.safetensors"},{"rfilename":"model-00022-of-00031.safetensors"},{"rfilename":"model-00023-of-00031.safetensors"},{"rfilename":"model-00024-of-00031.safetensors"},{"rfilename":"model-00025-of-00031.safetensors"},{"rfilename":"model-00026-of-00031.safetensors"},{"rfilename":"model-00027-of-00031.safetensors"},{"rfilename":"model-00028-of-00031.safetensors"},{"rfilename":"model-00029-of-00031.safetensors"},{"rfilename":"model-00030-of-00031.safetensors"},{"rfilename":"model-00031-of-00031.safetensors"},{"rfilename":"model.safetensors.index.json"},{"rfilename":"special_tokens_map.json"},{"rfilename":"tokenizer.json"},{"rfilename":"tokenizer_config.json"}],"spaces":["hfmlsoc/different-flops","juliensimon/trinity-code-reviewer","Legal-Assistant/LawBot","realwixi/plantDisease","AmbitiousPotato/SingaporeAiBackend","rofg2/rotai","tejasfirke/talk-to-tejas","sterlinxo/cbae","umairali64488/rag-research-assistant","umairali64488/multi_llm_debugging_engine","Mmyyyzsj/MasterMind-AI.as","kansdububeusbc/SPARKIAI","CaffeinatedCoding/nyayasetu","pavan1221/smartsaduvu","Mmyyyzsj/CAT-GPT","AlauStone/rag-assistant","edmiranda2301/Energy_gt_demo","Bachstelze/Round-Trip_Translation","SurLink/Explainer","Madras1/AetherMap","Saad1502/AI_Research_Explorer","sk31415/resume-forge","CosmicMagnetar/OpenTriage_AI","OsamabinAdnan/FullstackTodoApp_with_Todo_AI_Chatbot","awesomemike-1989/Website_Summarizer","awesomemike-1989/News_Summarizer","awesomemike-1989/Personal_Assistant","awesomemike-1989/MoM_Summarizer","awesomemike-1989/SchoolQuestionAnswerGenerator","awesomemike-1989/Email_SubjectLine_Suggestor","awesomemike-1989/My_Personalized_Resume","adi21singh/archviz","ThatPoorHippie/toneshift-mitchell","Ani14/Guvi-Hackathon-TeChAI","Katamo/PruebaIA","jawadsaghir12/chatbot","aditay1453/xngh","maheenalishah/hackaton2todo","abdulmanan04/todo-app-III","ahmedali021/Todo-App","naseerahmed/todo-app-phase-3","Vamshiboss8055/SAKChatBot","dynamite500/govt_law","CiscsoPonce/PrimoGreedy-Agent","shlokkatare/workshop","Vamshiboss8055/KPRITCSEE","jayashankarvatti/ChatBot","RATHNAGIRIABHINAV/KPRITCSE","Vaishnavi-96/SURYA","Akshitha-Manne/kprit.aai","meghana-82/kprit","Malavika-28/kprit","Malleshwari/kprit","prabhas097/nani","RATHNAGIRIABHINAV/abhi","Harshitha212/harshh","Hima1920/Himabindhu","srinuai123/CustomerCare_Chatbot","SACHITHA16/kpritt","Alekhya1278/chitti","jayashankarvatti/KPRITCustomerCare","Alekhya1278/Alekhya817","meghana-82/KPRIT1","nandhu596/123nandhu","Shivavardha/sak_chatbot","Bhoomesh/Chatbot","ragipindivaishnavi/SPACE","Thummala-archana/thummalaarchana","Bhoomesh/kpritCustomercare","saikumargannepaka/SAI","meghana-82/Kprit2","Malavika-28/kprit2","saikumargannepaka/SAI-1","ganamonilokeshyav/chatbot","meghana-82/kprit3","Shivavardha/Customer_Support","rajesh143G/Customer-124","ganamonilokeshyav/kpritcustomercare","rajesh143G/Black-forest","ragipindivaishnavi/customercare","manikumaryepuri1/chatbot","mounika21mouni/mounika2","manikumaryepuri1/kpritcustomercare","SACHITHA16/sachitha","Malleshwari/madhu","ManasaGangothri/SecondOR","Malleshwari/malleshwari1","sahithya19/Sahithya","ManasaGangothri/ThirdCS","ved-1234/custumercare_chatbot","sahithya19/Sahithya.customer.chatbot","Malleshwari/customercare","Venugopal909/venus","mounika21mouni/mounika83","saikumargannepaka/Saikumar","Rajeshwari2004/Chat","saikumargannepaka/GSK-C3","Pravalika-17/Pravalika","Prathyusha285/chinnu","Rajeshwari2004/FIRST"],"createdAt":"2026-01-27T14:52:00.000Z","safetensors":{"parameters":{"BF16":398635286016},"total":398635286016},"usedStorage":797290569201}