mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-25 14:46:19 +00:00
Resolve conflicts in: - server/uv.lock (revision number, greenlet wheel format) - src/store/chatStore.ts (merge target/displayContent and executionId/projectId params) - src/components/ChatBox/BottomBox/InputBox.tsx (merge mention and trigger/expanded features) - src/components/ChatBox/index.tsx (merge mention/direct-agent features with new unified layout)
70 lines
2.6 KiB
Python
70 lines
2.6 KiB
Python
# ========= Copyright 2025-2026 @ Eigent.ai All Rights Reserved. =========
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ========= Copyright 2025-2026 @ Eigent.ai All Rights Reserved. =========
|
|
|
|
import base64
|
|
import os
|
|
import time
|
|
|
|
from pydantic import BaseModel
|
|
from sqlalchemy import Column, Integer, text
|
|
from sqlmodel import Field
|
|
|
|
from app.component.sqids import encode_user_id
|
|
from app.model.abstract.model import AbstractModel, DefaultTimes
|
|
|
|
|
|
class ChatSnapshot(AbstractModel, DefaultTimes, table=True):
|
|
id: int = Field(default=None, primary_key=True)
|
|
user_id: int = Field(sa_column=(Column(Integer, server_default=text("0"))))
|
|
api_task_id: str = Field(index=True)
|
|
camel_task_id: str = Field(index=True)
|
|
browser_url: str
|
|
image_path: str
|
|
|
|
@classmethod
|
|
def get_user_dir(cls, user_id: int) -> str:
|
|
return os.path.join("app", "public", "upload", encode_user_id(user_id))
|
|
|
|
@classmethod
|
|
def caclDir(cls, path: str) -> float:
|
|
"""Return disk usage of path directory (in MB, rounded to 2 decimal places)"""
|
|
total_size = 0
|
|
for dirpath, dirnames, filenames in os.walk(path):
|
|
for f in filenames:
|
|
fp = os.path.join(dirpath, f)
|
|
if os.path.isfile(fp):
|
|
total_size += os.path.getsize(fp)
|
|
size_mb = total_size / (1024 * 1024)
|
|
return round(size_mb, 2)
|
|
|
|
|
|
class ChatSnapshotIn(BaseModel):
|
|
api_task_id: str
|
|
user_id: int | None = None
|
|
camel_task_id: str
|
|
browser_url: str
|
|
image_base64: str
|
|
|
|
@staticmethod
|
|
def save_image(user_id: int, api_task_id: str, image_base64: str) -> str:
|
|
if "," in image_base64:
|
|
image_base64 = image_base64.split(",", 1)[1]
|
|
user_dir = encode_user_id(user_id)
|
|
folder = os.path.join("app", "public", "upload", user_dir, api_task_id)
|
|
os.makedirs(folder, exist_ok=True)
|
|
filename = f"{int(time.time() * 1000)}.jpg"
|
|
file_path = os.path.join(folder, filename)
|
|
with open(file_path, "wb") as f:
|
|
f.write(base64.b64decode(image_base64))
|
|
return f"/public/upload/{user_dir}/{api_task_id}/{filename}"
|