mirror of https://github.com/kortix-ai/suna.git
refactor(api): update import statements to use relative paths
- Changed import statements in `agents.py` and `threads.py` to utilize relative paths for improved module organization and clarity.
This commit is contained in:
parent
8a6f23080e
commit
53fb20aa6a
|
@ -3,7 +3,7 @@ from typing import Optional, List, Dict, Any
|
|||
from dataclasses import dataclass, asdict
|
||||
import json
|
||||
|
||||
from tools import AgentPressTools
|
||||
from ..tools import AgentPressTools
|
||||
|
||||
|
||||
@dataclass
|
||||
|
|
|
@ -4,7 +4,7 @@ import httpx
|
|||
from datetime import datetime
|
||||
|
||||
# Import from shared models
|
||||
from models import (
|
||||
from ..models import (
|
||||
Role,
|
||||
MessageType,
|
||||
BaseMessage,
|
||||
|
|
Loading…
Reference in New Issue