teoat commited on
Commit
82b2026
·
verified ·
1 Parent(s): e1f20f6

Upload core/models/agent.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. core/models/agent.py +1 -8
core/models/agent.py CHANGED
@@ -7,14 +7,7 @@ Database models for AI agent drafts and approvals.
7
  from datetime import datetime
8
  from uuid import uuid4
9
 
10
- from sqlalchemy import (
11
- JSON,
12
- Column,
13
- DateTime,
14
- Float,
15
- String,
16
- Text,
17
- )
18
 
19
  from core.models.base import Base
20
 
 
7
  from datetime import datetime
8
  from uuid import uuid4
9
 
10
+ from sqlalchemy import JSON, Column, DateTime, Float, String, Text
 
 
 
 
 
 
 
11
 
12
  from core.models.base import Base
13