Docty commited on
Commit
f74f9ec
·
verified ·
1 Parent(s): fb0934d

Delete src/types.py

Browse files
Files changed (1) hide show
  1. src/types.py +0 -11
src/types.py DELETED
@@ -1,11 +0,0 @@
1
- from pydantic import BaseModel, Field
2
-
3
- class ThrusterData(BaseModel):
4
- """Schema for prediction input parameters."""
5
- driver_temperature: float = Field(description="Driver temperature in Celsius")
6
- temperature: float = Field(description="Temperature in Celsius")
7
- speed_rpm: float = Field(description="Speed in RPM")
8
- current: float = Field(description="Current in Amperes")
9
- voltage: float = Field(description="Voltage in Volts")
10
- power: float = Field(description="Power in Watts")
11
- thruster_id_encoded: float = Field(default=1.0, description="Encoded thruster ID (default=1.0)")