Compare commits
3 Commits
a03304f9ef
...
fix/issue-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a5e41ab449 | ||
| 6977203748 | |||
|
|
7dfd79dea2 |
@@ -1,11 +0,0 @@
|
||||
DATABASE_URL=sqlite:///./data/app.db
|
||||
SECRET_KEY=your-super-secret-key-change-in-production
|
||||
JWT_ALGORITHM=HS256
|
||||
ACCESS_TOKEN_EXPIRE_MINUTES=1440
|
||||
MINIMAX_API_KEY=your-minimax-api-key
|
||||
MINIMAX_MODEL=MiniMax-Text-01
|
||||
AVE_API_KEY=your-ave-cloud-api-key
|
||||
AVE_API_PLAN=free
|
||||
HOST=0.0.0.0
|
||||
PORT=8000
|
||||
DEBUG=false
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -91,3 +91,35 @@ class SimulationResponse(BaseModel):
|
||||
|
||||
class Config:
|
||||
from_attributes = True
|
||||
|
||||
|
||||
class BotConversationCreate(BaseModel):
|
||||
role: str
|
||||
content: str
|
||||
|
||||
|
||||
class BotConversationResponse(BaseModel):
|
||||
id: str
|
||||
bot_id: str
|
||||
role: str
|
||||
content: str
|
||||
created_at: datetime
|
||||
|
||||
class Config:
|
||||
from_attributes = True
|
||||
|
||||
|
||||
class SignalResponse(BaseModel):
|
||||
id: str
|
||||
bot_id: str
|
||||
run_id: str
|
||||
signal_type: str
|
||||
token: str
|
||||
price: float
|
||||
confidence: Optional[float]
|
||||
reasoning: Optional[str]
|
||||
executed: bool
|
||||
created_at: datetime
|
||||
|
||||
class Config:
|
||||
from_attributes = True
|
||||
|
||||
Reference in New Issue
Block a user