eigent/server/app/model/user/key.py
Tong Chen 712f20a8fa
Some checks are pending
Pre-commit / pre-commit (push) Waiting to run
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Test / Run Python Tests (push) Waiting to run
Feat: Server refactor v1 (#1509)
2026-03-24 18:05:52 +08:00

53 lines
1.8 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. =========
from enum import IntEnum, StrEnum
from pydantic import BaseModel, computed_field
from sqlalchemy_utils import ChoiceType
from sqlmodel import Column, Field, SmallInteger
from app.core.environment import env_not_empty
from app.model.abstract.model import AbstractModel, DefaultTimes
class ModelType(StrEnum):
gpt4_1 = "gpt-4.1"
gpt4_mini = "gpt-4.1-mini"
gpt5_4 = "gpt-5.4"
gemini_3_pro = "gemini-3-pro-preview"
minimax_m2_5 = "minimax_m2_5"
class KeyStatus(IntEnum):
active = 1
disabled = -1
class Key(AbstractModel, DefaultTimes, table=True):
id: int | None = Field(default=None, primary_key=True)
user_id: int = Field(foreign_key="user.id", index=True)
value: str = Field(max_length=255, index=True)
inner_key: str = Field(default="", max_length=255) # litellm内部存储的key
status: KeyStatus = Field(sa_column=Column(ChoiceType(KeyStatus, SmallInteger())))
class KeyOut(BaseModel):
warning_code: str | None = None
warning_text: str | None = None
value: str
@computed_field(return_type=str)
def api_url(self):
return env_not_empty("litellm_url")