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:
mykonos-ibiza 2025-07-29 21:15:28 +05:30
parent 8a6f23080e
commit 53fb20aa6a
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -4,7 +4,7 @@ import httpx
from datetime import datetime
# Import from shared models
from models import (
from ..models import (
Role,
MessageType,
BaseMessage,