Views
No views yet
🚀 **Uses Mistral Large 2411 for electrohydrodynamics and plasma physics research
mistral-large-2411-hall-thruster-fluid-dynamicsmistralai/Mistral-Large-2411Taylor658/Electrohydrodynamics1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("Taylor658/mistral-large-2411-hall-thruster-fluid-dynamics")
4model = AutoModelForCausalLM.from_pretrained("Taylor658/mistral-large-2411-hall-thruster-fluid-dynamics")
5
6# Example usage with long context
7prompt = "Explain the electrohydrodynamic effects in Hall Effect Thrusters..."
8inputs = tokenizer(prompt, return_tensors="pt")
9outputs = model.generate(**inputs, max_length=2048)1# Leverage native function calling for computational tasks
2tools = [
3 {
4 "type": "function",
5 "function": {
6 "name": "calculate_hall_parameter",
7 "description": "Calculate Hall parameter for given conditions"
8 }
9 }
10]