-
Notifications
You must be signed in to change notification settings - Fork 590
/
Copy pathcredit.py
773 lines (678 loc) · 20.2 KB
/
credit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
from datetime import datetime, timezone
from enum import Enum
from typing import Annotated, Optional
from epyxid import XID
from fastapi import HTTPException
from pydantic import BaseModel, ConfigDict, Field
from sqlalchemy import (
Column,
DateTime,
Float,
Index,
String,
func,
select,
update,
)
from sqlalchemy.ext.asyncio import AsyncSession
from models.base import Base
from models.db import get_session
class CreditType(str, Enum):
"""Credit type is used in db column names, do not change it."""
DAILY = "daily_credits"
REWARD = "reward_credits"
PERMANENT = "credits"
class OwnerType(str, Enum):
"""Type of credit account owner."""
USER = "user"
AGENT = "agent"
PLATFORM = "platform"
# Platform virtual account ids, they are used for transaction balance tracing
DEFAULT_PLATFORM_ACCOUNT_RECHARGE = "platform_recharge"
DEFAULT_PLATFORM_ACCOUNT_DAILY_RESET = "platform_daily_reset"
DEFAULT_PLATFORM_ACCOUNT_ADJUSTMENT = "platform_adjustment"
DEFAULT_PLATFORM_ACCOUNT_REWARD = "platform_reward"
DEFAULT_PLATFORM_ACCOUNT_REFUND = "platform_refund"
DEFAULT_PLATFORM_ACCOUNT_FEE = "platform_fee"
DEFAULT_PLATFORM_ACCOUNT_DEV = "platform_dev"
class CreditAccountTable(Base):
"""Credit account database table model."""
__tablename__ = "credit_accounts"
__table_args__ = (Index("ix_credit_accounts_owner", "owner_type", "owner_id"),)
id = Column(
String,
primary_key=True,
)
owner_type = Column(
String,
nullable=False,
)
owner_id = Column(
String,
nullable=False,
)
daily_quota = Column(
Float,
default=0.0,
nullable=False,
)
daily_credits = Column(
Float,
default=0.0,
nullable=False,
)
reward_credits = Column(
Float,
default=0.0,
nullable=False,
)
credits = Column(
Float,
default=0.0,
nullable=False,
)
income_at = Column(
DateTime(timezone=True),
nullable=True,
)
expense_at = Column(
DateTime(timezone=True),
nullable=True,
)
created_at = Column(
DateTime(timezone=True),
nullable=False,
server_default=func.now(),
)
updated_at = Column(
DateTime(timezone=True),
nullable=False,
server_default=func.now(),
onupdate=lambda: datetime.now(timezone.utc),
)
class CreditAccount(BaseModel):
"""Credit account model with all fields."""
model_config = ConfigDict(
use_enum_values=True,
from_attributes=True,
json_encoders={datetime: lambda v: v.isoformat(timespec="milliseconds")},
)
id: Annotated[
str,
Field(
default_factory=lambda: str(XID()),
description="Unique identifier for the credit account",
),
]
owner_type: Annotated[OwnerType, Field(description="Type of the account owner")]
owner_id: Annotated[str, Field(description="ID of the account owner")]
daily_quota: Annotated[
float, Field(default=0.0, description="Daily credit quota that resets each day")
]
daily_credits: Annotated[
float, Field(default=0.0, description="Current available daily credits")
]
reward_credits: Annotated[
float, Field(default=0.0, description="Reward credits earned through rewards")
]
credits: Annotated[
float, Field(default=0.0, description="Credits added through top-ups")
]
income_at: Annotated[
Optional[datetime],
Field(None, description="Timestamp of the last income transaction"),
]
expense_at: Annotated[
Optional[datetime],
Field(None, description="Timestamp of the last expense transaction"),
]
created_at: Annotated[
datetime, Field(description="Timestamp when this account was created")
]
updated_at: Annotated[
datetime, Field(description="Timestamp when this account was last updated")
]
@classmethod
async def get_in_session(
cls, session: AsyncSession, owner_type: OwnerType, owner_id: str
) -> "CreditAccount":
"""Get a credit account by owner type and ID.
Args:
session: Async session to use for database queries
owner_type: Type of the owner
owner_id: ID of the owner
Returns:
CreditAccount if found, None otherwise
"""
stmt = select(CreditAccountTable).where(
CreditAccountTable.owner_type == owner_type,
CreditAccountTable.owner_id == owner_id,
)
result = await session.scalar(stmt)
if not result:
account = await cls.create_in_session(session, owner_type, owner_id)
else:
account = cls.model_validate(result)
return account
@classmethod
async def get(cls, owner_type: OwnerType, owner_id: str) -> "CreditAccount":
"""Get a credit account by owner type and ID.
Args:
owner_type: Type of the owner
owner_id: ID of the owner
Returns:
CreditAccount if found, None otherwise
"""
async with get_session() as session:
return await cls.get_in_session(session, owner_type, owner_id)
@classmethod
async def get_by_user(cls, user_id: str) -> "CreditAccount":
return await cls.get(OwnerType.USER, user_id)
@classmethod
async def expense_in_session(
cls, session: AsyncSession, owner_type: OwnerType, owner_id: str, amount: float
) -> None:
# check first
account = await cls.get_in_session(session, owner_type, owner_id)
if (
amount > account.daily_credits
and amount > account.reward_credits
and amount > account.credits
):
raise HTTPException(status_code=400, detail="Not enough credits")
# expense
field = "credits"
if amount <= account.daily_credits:
field = "daily_credits"
elif amount <= account.reward_credits:
field = "reward_credits"
stmt = (
update(CreditAccountTable)
.where(
CreditAccountTable.owner_type == owner_type,
CreditAccountTable.owner_id == owner_id,
)
.values({field: CreditAccountTable.c[field] - amount})
)
await session.execute(stmt)
await session.commit()
@classmethod
async def expense(cls, owner_type: OwnerType, owner_id: str, amount: float) -> None:
async with get_session() as session:
await cls.expense_in_session(session, owner_type, owner_id, amount)
@classmethod
async def expense_by_user(cls, user_id: str, amount: float) -> None:
await cls.expense(OwnerType.USER, user_id, amount)
@classmethod
async def income_in_session(
cls,
session: AsyncSession,
owner_type: OwnerType,
owner_id: str,
amount: float,
credit_type: CreditType,
) -> None:
# income
stmt = (
update(CreditAccountTable)
.where(
CreditAccountTable.owner_type == owner_type,
CreditAccountTable.owner_id == owner_id,
)
.values(
{credit_type.value: CreditAccountTable.c[credit_type.value] + amount}
)
)
await session.execute(stmt)
await session.commit()
@classmethod
async def create_in_session(
cls,
session: AsyncSession,
owner_type: OwnerType,
owner_id: str,
daily_quota: float = 100.0,
) -> "CreditAccount":
"""Get an existing credit account or create a new one if it doesn't exist.
This is useful for silent creation of accounts when they're first accessed.
Args:
session: Async session to use for database queries
owner_type: Type of the owner
owner_id: ID of the owner
daily_quota: Daily quota for a new account if created
Returns:
CreditAccount: The existing or newly created credit account
"""
if owner_type != OwnerType.USER:
# only users have daily quota
daily_quota = 0.0
record = CreditAccountTable(
id=str(XID()),
owner_type=owner_type,
owner_id=owner_id,
daily_quota=daily_quota,
daily_credits=daily_quota,
reward_credits=0.0,
credits=0.0,
income_at=None,
expense_at=None,
)
session.add(record)
await session.commit()
await session.refresh(record)
return cls.model_validate(record)
class EventType(str, Enum):
"""Type of credit event."""
MESSAGE = "message"
SKILL_CALL = "skill_call"
RECHARGE = "recharge"
REWARD = "reward"
REFUND = "refund"
ADJUSTMENT = "adjustment"
DAILY_RESET = "daily_reset"
class UpstreamType(str, Enum):
"""Type of upstream transaction."""
API = "api"
SCHEDULER = "scheduler"
EXECUTOR = "executor"
class Direction(str, Enum):
"""Direction of credit flow."""
INCOME = "income"
EXPENSE = "expense"
class CreditEventTable(Base):
"""Credit events database table model.
Records business events like message processing, skill calls, etc.
"""
__tablename__ = "credit_events"
id = Column(
String,
primary_key=True,
)
event_type = Column(
String,
nullable=False,
)
upstream_type = Column(
String,
nullable=False,
)
upstream_tx_id = Column(
String,
nullable=False,
)
start_message_id = Column(
String,
nullable=True,
)
message_id = Column(
String,
nullable=True,
)
skill_call_id = Column(
String,
nullable=True,
)
direction = Column(
String,
nullable=False,
)
from_account = Column(
String,
nullable=True,
)
total_amount = Column(
Float,
default=0.0,
nullable=False,
)
base_amount = Column(
Float,
default=0.0,
nullable=False,
)
base_discount_amount = Column(
Float,
default=0.0,
nullable=True,
)
base_original_amount = Column(
Float,
default=0.0,
nullable=True,
)
base_llm_amount = Column(
Float,
default=0.0,
nullable=True,
)
base_skill_amount = Column(
Float,
default=0.0,
nullable=True,
)
fee_platform_amount = Column(
Float,
default=0.0,
nullable=True,
)
fee_dev_account = Column(
String,
nullable=True,
)
fee_dev_amount = Column(
Float,
default=0.0,
nullable=True,
)
fee_agent_account = Column(
String,
nullable=True,
)
fee_agent_amount = Column(
Float,
default=0.0,
nullable=True,
)
note = Column(
String,
nullable=True,
)
created_at = Column(
DateTime(timezone=True),
nullable=False,
server_default=func.now(),
)
class CreditEvent(BaseModel):
"""Credit event model with all fields."""
model_config = ConfigDict(
use_enum_values=True,
from_attributes=True,
json_encoders={datetime: lambda v: v.isoformat(timespec="milliseconds")},
)
id: Annotated[
str,
Field(
default_factory=lambda: str(XID()),
description="Unique identifier for the credit event",
),
]
event_type: Annotated[EventType, Field(description="Type of the event")]
upstream_type: Annotated[
UpstreamType, Field(description="Type of upstream transaction")
]
upstream_tx_id: Annotated[str, Field(description="Upstream transaction ID if any")]
start_message_id: Annotated[
Optional[str],
Field(None, description="ID of the starting message if applicable"),
]
message_id: Annotated[
Optional[str], Field(None, description="ID of the message if applicable")
]
skill_call_id: Annotated[
Optional[str], Field(None, description="ID of the skill call if applicable")
]
direction: Annotated[Direction, Field(description="Direction of the credit flow")]
from_account: Annotated[
Optional[str], Field(None, description="Account ID from which credits flow")
]
total_amount: Annotated[
float,
Field(
default=0.0, description="Total amount (after discount) of credits involved"
),
]
base_amount: Annotated[
float,
Field(default=0.0, description="Base amount of credits involved"),
]
base_discount_amount: Annotated[
Optional[float], Field(default=0.0, description="Base discount amount")
]
base_original_amount: Annotated[
Optional[float], Field(default=0.0, description="Base original amount")
]
base_llm_amount: Annotated[
Optional[float], Field(default=0.0, description="Base LLM cost amount")
]
base_skill_amount: Annotated[
Optional[float], Field(default=0.0, description="Base skill cost amount")
]
fee_platform_amount: Annotated[
Optional[float], Field(default=0.0, description="Platform fee amount")
]
fee_dev_account: Annotated[
Optional[str], Field(None, description="Developer account ID receiving fee")
]
fee_dev_amount: Annotated[
Optional[float], Field(default=0.0, description="Developer fee amount")
]
fee_agent_account: Annotated[
Optional[str], Field(None, description="Agent account ID receiving fee")
]
fee_agent_amount: Annotated[
Optional[float], Field(default=0.0, description="Agent fee amount")
]
note: Annotated[Optional[str], Field(None, description="Additional notes")]
created_at: Annotated[
datetime, Field(description="Timestamp when this event was created")
]
class TransactionType(str, Enum):
"""Type of credit transaction."""
PAY = "pay"
RECEIVE_BASE_LLM = "receive_base_llm"
RECEIVE_BASE_SKILL = "receive_base_skill"
RECEIVE_FEE_DEV = "receive_fee_dev"
RECEIVE_FEE_AGENT = "receive_fee_agent"
RECEIVE_FEE_PLATFORM = "receive_fee_platform"
RECHARGE = "recharge"
REWARD = "reward"
REFUND = "refund"
ADJUSTMENT = "adjustment"
DAILY_RESET = "daily_reset"
class CreditDebit(str, Enum):
"""Credit or debit transaction."""
CREDIT = "credit"
DEBIT = "debit"
class CreditTransactionTable(Base):
"""Credit transactions database table model.
Records the flow of credits in and out of accounts.
"""
__tablename__ = "credit_transactions"
__table_args__ = (Index("ix_credit_transactions_account", "account_id"),)
id = Column(
String,
primary_key=True,
)
account_id = Column(
String,
nullable=False,
)
event_id = Column(
String,
nullable=False,
)
tx_type = Column(
String,
nullable=False,
)
credit_debit = Column(
String,
nullable=False,
)
change_amount = Column(
Float,
default=0.0,
nullable=False,
)
created_at = Column(
DateTime(timezone=True),
nullable=False,
server_default=func.now(),
)
class CreditTransaction(BaseModel):
"""Credit transaction model with all fields."""
model_config = ConfigDict(
use_enum_values=True,
from_attributes=True,
json_encoders={datetime: lambda v: v.isoformat(timespec="milliseconds")},
)
id: Annotated[
str,
Field(
default_factory=lambda: str(XID()),
description="Unique identifier for the credit transaction",
),
]
account_id: Annotated[
str, Field(description="ID of the account this transaction belongs to")
]
event_id: Annotated[
str, Field(description="ID of the event that triggered this transaction")
]
tx_type: Annotated[TransactionType, Field(description="Type of the transaction")]
credit_debit: Annotated[
CreditDebit, Field(description="Whether this is a credit or debit transaction")
]
change_amount: Annotated[
float, Field(default=0.0, description="Amount of credits changed")
]
created_at: Annotated[
datetime, Field(description="Timestamp when this transaction was created")
]
class PriceEntity(str, Enum):
"""Type of credit price."""
SKILL_CALL = "skill_call"
class DiscountType(str, Enum):
"""Type of discount."""
STANDARD = "standard"
SELF_KEY = "self_key"
DEFAULT_SKILL_CALL_PRICE = 10.0
DEFAULT_SKILL_CALL_SELF_KEY_PRICE = 5.0
class CreditPriceTable(Base):
"""Credit price database table model.
Stores price information for different types of services.
"""
__tablename__ = "credit_prices"
id = Column(
String,
primary_key=True,
)
price_entity = Column(
String,
nullable=False,
)
price_entity_id = Column(
String,
nullable=False,
)
discount_type = Column(
String,
nullable=False,
)
price = Column(
Float,
default=0.0,
nullable=False,
)
created_at = Column(
DateTime(timezone=True),
nullable=False,
server_default=func.now(),
)
updated_at = Column(
DateTime(timezone=True),
nullable=False,
server_default=func.now(),
onupdate=lambda: datetime.now(timezone.utc),
)
class CreditPrice(BaseModel):
"""Credit price model with all fields."""
model_config = ConfigDict(
use_enum_values=True,
from_attributes=True,
json_encoders={datetime: lambda v: v.isoformat(timespec="milliseconds")},
)
id: Annotated[
str,
Field(
default_factory=lambda: str(XID()),
description="Unique identifier for the credit price",
),
]
price_entity: Annotated[
PriceEntity, Field(description="Type of the price (agent or skill_call)")
]
price_entity_id: Annotated[
str, Field(description="ID of the price entity, the skill is the name")
]
discount_type: Annotated[
DiscountType,
Field(default=DiscountType.STANDARD, description="Type of discount"),
]
price: Annotated[float, Field(default=0.0, description="Standard price")]
created_at: Annotated[
datetime, Field(description="Timestamp when this price was created")
]
updated_at: Annotated[
datetime, Field(description="Timestamp when this price was last updated")
]
class CreditPriceLogTable(Base):
"""Credit price log database table model.
Records history of price changes.
"""
__tablename__ = "credit_price_logs"
id = Column(
String,
primary_key=True,
)
price_id = Column(
String,
nullable=False,
)
old_price = Column(
Float,
nullable=False,
)
new_price = Column(
Float,
nullable=False,
)
note = Column(
String,
nullable=True,
)
modified_by = Column(
String,
nullable=False,
)
modified_at = Column(
DateTime(timezone=True),
nullable=False,
server_default=func.now(),
)
class CreditPriceLog(BaseModel):
"""Credit price log model with all fields."""
model_config = ConfigDict(
use_enum_values=True,
from_attributes=True,
json_encoders={datetime: lambda v: v.isoformat(timespec="milliseconds")},
)
id: Annotated[
str,
Field(
default_factory=lambda: str(XID()),
description="Unique identifier for the log entry",
),
]
price_id: Annotated[str, Field(description="ID of the price that was modified")]
old_price: Annotated[float, Field(description="Previous standard price")]
new_price: Annotated[float, Field(description="New standard price")]
note: Annotated[
Optional[str], Field(None, description="Note about the modification")
]
modified_by: Annotated[
str, Field(description="ID of the user who made the modification")
]
modified_at: Annotated[
datetime, Field(description="Timestamp when the modification was made")
]