-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmemory_collection.py
More file actions
868 lines (719 loc) · 28.1 KB
/
Copy pathmemory_collection.py
File metadata and controls
868 lines (719 loc) · 28.1 KB
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
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
"""
This file is auto generated by the code generation script.
Do not modify this file manually.
Use the `make codegen` command to regenerate.
当前文件为自动生成的控制 API 客户端代码。请勿手动修改此文件。
使用 `make codegen` 命令重新生成。
source: agentrun/memory_collection/__memory_collection_async_template.py
MemoryCollection 高层 API / MemoryCollection High-Level API
此模块定义记忆集合资源的高级API。
This module defines the high-level API for memory collection resources.
"""
from typing import Any, Dict, List, Optional, Tuple
from agentrun.utils.config import Config
from agentrun.utils.model import PageableInput
from agentrun.utils.resource import ResourceBase
from .model import (
MemoryCollectionCreateInput,
MemoryCollectionImmutableProps,
MemoryCollectionListInput,
MemoryCollectionListOutput,
MemoryCollectionMutableProps,
MemoryCollectionSystemProps,
MemoryCollectionUpdateInput,
)
class MemoryCollection(
MemoryCollectionMutableProps,
MemoryCollectionImmutableProps,
MemoryCollectionSystemProps,
ResourceBase,
):
"""记忆集合资源 / MemoryCollection Resource
提供记忆集合的完整生命周期管理,包括创建、删除、更新、查询。
Provides complete lifecycle management for memory collections, including create, delete, update, and query.
"""
@classmethod
def __get_client(cls):
"""获取客户端实例 / Get client instance
Returns:
MemoryCollectionClient: 客户端实例 / Client instance
"""
from .client import MemoryCollectionClient
return MemoryCollectionClient()
@classmethod
async def create_async(
cls, input: MemoryCollectionCreateInput, config: Optional[Config] = None
):
"""创建记忆集合(异步)
Args:
input: 记忆集合输入参数
config: 配置
Returns:
MemoryCollection: 创建的记忆集合对象
"""
return await cls.__get_client().create_async(input, config=config)
@classmethod
def create(
cls, input: MemoryCollectionCreateInput, config: Optional[Config] = None
):
"""创建记忆集合(同步)
Args:
input: 记忆集合输入参数
config: 配置
Returns:
MemoryCollection: 创建的记忆集合对象
"""
return cls.__get_client().create(input, config=config)
@classmethod
async def delete_by_name_async(
cls, memory_collection_name: str, config: Optional[Config] = None
):
"""根据名称删除记忆集合(异步)
Args:
memory_collection_name: 记忆集合名称
config: 配置
"""
return await cls.__get_client().delete_async(
memory_collection_name, config=config
)
@classmethod
def delete_by_name(
cls, memory_collection_name: str, config: Optional[Config] = None
):
"""根据名称删除记忆集合(同步)
Args:
memory_collection_name: 记忆集合名称
config: 配置
"""
return cls.__get_client().delete(memory_collection_name, config=config)
@classmethod
async def update_by_name_async(
cls,
memory_collection_name: str,
input: MemoryCollectionUpdateInput,
config: Optional[Config] = None,
):
"""根据名称更新记忆集合(异步)
Args:
memory_collection_name: 记忆集合名称
input: 记忆集合更新输入参数
config: 配置
Returns:
MemoryCollection: 更新后的记忆集合对象
"""
return await cls.__get_client().update_async(
memory_collection_name, input, config=config
)
@classmethod
def update_by_name(
cls,
memory_collection_name: str,
input: MemoryCollectionUpdateInput,
config: Optional[Config] = None,
):
"""根据名称更新记忆集合(同步)
Args:
memory_collection_name: 记忆集合名称
input: 记忆集合更新输入参数
config: 配置
Returns:
MemoryCollection: 更新后的记忆集合对象
"""
return cls.__get_client().update(
memory_collection_name, input, config=config
)
@classmethod
async def get_by_name_async(
cls, memory_collection_name: str, config: Optional[Config] = None
):
"""根据名称获取记忆集合(异步)
Args:
memory_collection_name: 记忆集合名称
config: 配置
Returns:
MemoryCollection: 记忆集合对象
"""
return await cls.__get_client().get_async(
memory_collection_name, config=config
)
@classmethod
def get_by_name(
cls, memory_collection_name: str, config: Optional[Config] = None
):
"""根据名称获取记忆集合(同步)
Args:
memory_collection_name: 记忆集合名称
config: 配置
Returns:
MemoryCollection: 记忆集合对象
"""
return cls.__get_client().get(memory_collection_name, config=config)
@classmethod
async def _list_page_async(
cls, page_input: PageableInput, config: Config | None = None, **kwargs
):
return await cls.__get_client().list_async(
input=MemoryCollectionListInput(
**kwargs,
**page_input.model_dump(),
),
config=config,
)
@classmethod
def _list_page(
cls, page_input: PageableInput, config: Config | None = None, **kwargs
):
return cls.__get_client().list(
input=MemoryCollectionListInput(
**kwargs,
**page_input.model_dump(),
),
config=config,
)
@classmethod
async def list_all_async(
cls,
*,
memory_collection_name: Optional[str] = None,
config: Optional[Config] = None,
) -> List[MemoryCollectionListOutput]:
"""列出所有记忆集合(异步)
Args:
memory_collection_name: 记忆集合名称(可选)
config: 配置
Returns:
List[MemoryCollectionListOutput]: 记忆集合列表
"""
return await cls._list_all_async(
lambda mc: mc.memory_collection_id or "",
config=config,
memory_collection_name=memory_collection_name,
)
@classmethod
def list_all(
cls,
*,
memory_collection_name: Optional[str] = None,
config: Optional[Config] = None,
) -> List[MemoryCollectionListOutput]:
"""列出所有记忆集合(同步)
Args:
memory_collection_name: 记忆集合名称(可选)
config: 配置
Returns:
List[MemoryCollectionListOutput]: 记忆集合列表
"""
return cls._list_all(
lambda mc: mc.memory_collection_id or "",
config=config,
memory_collection_name=memory_collection_name,
)
async def update_async(
self,
input: MemoryCollectionUpdateInput,
config: Optional[Config] = None,
):
"""更新记忆集合(异步)
Args:
input: 记忆集合更新输入参数
config: 配置
Returns:
MemoryCollection: 更新后的记忆集合对象
"""
if self.memory_collection_name is None:
raise ValueError(
"memory_collection_name is required to update a"
" MemoryCollection"
)
result = await self.update_by_name_async(
self.memory_collection_name, input, config=config
)
self.update_self(result)
return self
def update(
self,
input: MemoryCollectionUpdateInput,
config: Optional[Config] = None,
):
"""更新记忆集合(同步)
Args:
input: 记忆集合更新输入参数
config: 配置
Returns:
MemoryCollection: 更新后的记忆集合对象
"""
if self.memory_collection_name is None:
raise ValueError(
"memory_collection_name is required to update a"
" MemoryCollection"
)
result = self.update_by_name(
self.memory_collection_name, input, config=config
)
self.update_self(result)
return self
async def delete_async(self, config: Optional[Config] = None):
"""删除记忆集合(异步)
Args:
config: 配置
"""
if self.memory_collection_name is None:
raise ValueError(
"memory_collection_name is required to delete a"
" MemoryCollection"
)
return await self.delete_by_name_async(
self.memory_collection_name, config=config
)
def delete(self, config: Optional[Config] = None):
"""删除记忆集合(同步)
Args:
config: 配置
"""
if self.memory_collection_name is None:
raise ValueError(
"memory_collection_name is required to delete a"
" MemoryCollection"
)
return self.delete_by_name(self.memory_collection_name, config=config)
async def get_async(self, config: Optional[Config] = None):
"""刷新记忆集合信息(异步)
Args:
config: 配置
Returns:
MemoryCollection: 刷新后的记忆集合对象
"""
if self.memory_collection_name is None:
raise ValueError(
"memory_collection_name is required to refresh a"
" MemoryCollection"
)
result = await self.get_by_name_async(
self.memory_collection_name, config=config
)
self.update_self(result)
return self
def get(self, config: Optional[Config] = None):
"""刷新记忆集合信息(同步)
Args:
config: 配置
Returns:
MemoryCollection: 刷新后的记忆集合对象
"""
if self.memory_collection_name is None:
raise ValueError(
"memory_collection_name is required to refresh a"
" MemoryCollection"
)
result = self.get_by_name(self.memory_collection_name, config=config)
self.update_self(result)
return self
async def refresh_async(self, config: Optional[Config] = None):
"""刷新记忆集合信息(异步)
Args:
config: 配置
Returns:
MemoryCollection: 刷新后的记忆集合对象
"""
return await self.get_async(config=config)
def refresh(self, config: Optional[Config] = None):
"""刷新记忆集合信息(同步)
Args:
config: 配置
Returns:
MemoryCollection: 刷新后的记忆集合对象
"""
return self.get(config=config)
@classmethod
async def to_mem0_memory_async(
cls,
memory_collection_name: str,
config: Optional[Config] = None,
history_db_path: Optional[str] = None,
):
"""将 MemoryCollection 转换为 agentrun-mem0ai AsyncMemory 客户端(异步)
Args:
memory_collection_name: 记忆集合名称
config: AgentRun 配置
history_db_path: mem0 历史数据库路径(可选)
Returns:
AsyncMemory: agentrun-mem0ai AsyncMemory 客户端实例
Raises:
ImportError: 如果未安装 agentrun-mem0ai 包
ValueError: 如果配置信息不完整
Example:
>>> memory = await MemoryCollection.to_mem0_memory_async(
... "memoryCollection010901",
... config=config
... )
>>> await memory.add("用户喜欢吃苹果", user_id="user123")
"""
try:
from agentrun_mem0 import AsyncMemory
except ImportError as e:
raise ImportError(
"agentrun-mem0ai package is required. Install it with: pip"
" install agentrun-mem0ai"
) from e
# 获取 MemoryCollection 配置
memory_collection = await cls.get_by_name_async(
memory_collection_name, config=config
)
# 构建 mem0 配置
mem0_config = await cls._build_mem0_config_async(
memory_collection, config, history_db_path
)
# 创建并返回 AsyncMemory 实例
return await AsyncMemory.from_config(mem0_config)
@classmethod
def to_mem0_memory(
cls,
memory_collection_name: str,
config: Optional[Config] = None,
history_db_path: Optional[str] = None,
):
"""将 MemoryCollection 转换为 agentrun-mem0ai Memory 客户端(同步)
Args:
memory_collection_name: 记忆集合名称
config: AgentRun 配置
history_db_path: mem0 历史数据库路径(可选)
Returns:
Memory: agentrun-mem0ai Memory 客户端实例
Raises:
ImportError: 如果未安装 agentrun-mem0ai 包
ValueError: 如果配置信息不完整
Example:
>>> memory = MemoryCollection.to_mem0_memory(
... "memoryCollection010901",
... config=config
... )
>>> memory.add("用户喜欢吃苹果", user_id="user123")
"""
try:
from agentrun_mem0 import Memory
except ImportError as e:
raise ImportError(
"agentrun-mem0ai package is required. Install it with: pip"
" install agentrun-mem0ai"
) from e
# 获取 MemoryCollection 配置
memory_collection = cls.get_by_name(
memory_collection_name, config=config
)
# 构建 mem0 配置
mem0_config = cls._build_mem0_config(
memory_collection, config, history_db_path
)
# 创建并返回 Memory 实例
return Memory.from_config(mem0_config)
@staticmethod
def _convert_vpc_endpoint_to_public(endpoint: str) -> str:
"""将 VPC 内网地址转换为公网地址
Args:
endpoint: 原始 endpoint,可能是 VPC 内网地址
Returns:
str: 公网地址
Example:
>>> _convert_vpc_endpoint_to_public("https://jiuqing.cn-hangzhou.vpc.tablestore.aliyuncs.com")
"https://jiuqing.cn-hangzhou.ots.aliyuncs.com"
"""
if ".vpc.tablestore.aliyuncs.com" in endpoint:
# 将 .vpc.tablestore.aliyuncs.com 替换为 .ots.aliyuncs.com
return endpoint.replace(
".vpc.tablestore.aliyuncs.com", ".ots.aliyuncs.com"
)
return endpoint
@classmethod
async def _build_mem0_config_async(
cls,
memory_collection: "MemoryCollection",
config: Optional[Config],
history_db_path: Optional[str] = None,
) -> Dict[str, Any]:
"""构建 mem0 配置字典(异步)
Args:
memory_collection: MemoryCollection 对象
config: AgentRun 配置
history_db_path: 历史数据库路径
Returns:
Dict[str, Any]: mem0 配置字典
"""
mem0_config: Dict[str, Any] = {}
# 构建 vector_store 配置
if memory_collection.vector_store_config:
vector_store_config = memory_collection.vector_store_config
provider = vector_store_config.provider or ""
if vector_store_config.config:
vs_config = vector_store_config.config
vector_store: Dict[str, Any] = {
"provider": provider,
"config": {},
}
# 根据不同的 provider 构建配置
if provider == "aliyun_tablestore":
# 获取凭证信息
effective_config = config or Config()
# 将 VPC 内网地址转换为公网地址
public_endpoint = cls._convert_vpc_endpoint_to_public(
vs_config.endpoint or ""
)
vector_store["config"] = {
"vector_dimension": vs_config.vector_dimension,
"endpoint": public_endpoint,
"instance_name": vs_config.instance_name,
"collection_name": vs_config.collection_name,
"access_key_id": effective_config.get_access_key_id(),
"access_key_secret": (
effective_config.get_access_key_secret()
),
}
# 如果有 security_token,添加它
security_token = effective_config.get_security_token()
if security_token:
vector_store["config"]["sts_token"] = security_token
else:
# 其他 provider 的通用配置
vector_store["config"] = {
"endpoint": vs_config.endpoint,
"collection_name": vs_config.collection_name,
}
if vs_config.vector_dimension:
vector_store["config"][
"vector_dimension"
] = vs_config.vector_dimension
mem0_config["vector_store"] = vector_store
# 构建 llm 配置
if memory_collection.llm_config:
llm_config = memory_collection.llm_config
model_service_name = llm_config.model_service_name
if model_service_name and llm_config.config:
# 使用高层 API 获取 ModelService 配置
base_url, api_key = (
await cls._resolve_model_service_config_async(
model_service_name, config
)
)
mem0_config["llm"] = {
"provider": "openai", # mem0 使用 openai 兼容接口
"config": {
"model": llm_config.config.model,
"openai_base_url": base_url,
"api_key": api_key,
},
}
# 构建 embedder 配置
if memory_collection.embedder_config:
embedder_config = memory_collection.embedder_config
model_service_name = embedder_config.model_service_name
if model_service_name and embedder_config.config:
# 使用高层 API 获取 ModelService 配置
base_url, api_key = (
await cls._resolve_model_service_config_async(
model_service_name, config
)
)
embedder_config_dict = {
"model": embedder_config.config.model,
"openai_base_url": base_url,
"api_key": api_key,
}
# 从 vector_store_config 中获取向量维度
if (
memory_collection.vector_store_config
and memory_collection.vector_store_config.config
and memory_collection.vector_store_config.config.vector_dimension
):
embedder_config_dict["embedding_dims"] = (
memory_collection.vector_store_config.config.vector_dimension
)
mem0_config["embedder"] = {
"provider": "openai", # mem0 使用 openai 兼容接口
"config": embedder_config_dict,
}
# 添加历史数据库路径
if history_db_path:
mem0_config["history_db_path"] = history_db_path
return mem0_config
@classmethod
def _build_mem0_config(
cls,
memory_collection: "MemoryCollection",
config: Optional[Config],
history_db_path: Optional[str] = None,
) -> Dict[str, Any]:
"""构建 mem0 配置字典(同步)
Args:
memory_collection: MemoryCollection 对象
config: AgentRun 配置
history_db_path: 历史数据库路径
Returns:
Dict[str, Any]: mem0 配置字典
"""
mem0_config: Dict[str, Any] = {}
# 构建 vector_store 配置
if memory_collection.vector_store_config:
vector_store_config = memory_collection.vector_store_config
provider = vector_store_config.provider or ""
if vector_store_config.config:
vs_config = vector_store_config.config
vector_store: Dict[str, Any] = {
"provider": provider,
"config": {},
}
# 根据不同的 provider 构建配置
if provider == "aliyun_tablestore":
# 获取凭证信息
effective_config = config or Config()
# 将 VPC 内网地址转换为公网地址
public_endpoint = cls._convert_vpc_endpoint_to_public(
vs_config.endpoint or ""
)
vector_store["config"] = {
"vector_dimension": vs_config.vector_dimension,
"endpoint": public_endpoint,
"instance_name": vs_config.instance_name,
"collection_name": vs_config.collection_name,
"access_key_id": effective_config.get_access_key_id(),
"access_key_secret": (
effective_config.get_access_key_secret()
),
}
# 如果有 security_token,添加它
security_token = effective_config.get_security_token()
if security_token:
vector_store["config"]["sts_token"] = security_token
else:
# 其他 provider 的通用配置
vector_store["config"] = {
"endpoint": vs_config.endpoint,
"collection_name": vs_config.collection_name,
}
if vs_config.vector_dimension:
vector_store["config"][
"vector_dimension"
] = vs_config.vector_dimension
mem0_config["vector_store"] = vector_store
# 构建 llm 配置
if memory_collection.llm_config:
llm_config = memory_collection.llm_config
model_service_name = llm_config.model_service_name
if model_service_name and llm_config.config:
# 使用高层 API 获取 ModelService 配置
base_url, api_key = cls._resolve_model_service_config(
model_service_name, config
)
mem0_config["llm"] = {
"provider": "openai", # mem0 使用 openai 兼容接口
"config": {
"model": llm_config.config.model,
"openai_base_url": base_url,
"api_key": api_key,
},
}
# 构建 embedder 配置
if memory_collection.embedder_config:
embedder_config = memory_collection.embedder_config
model_service_name = embedder_config.model_service_name
if model_service_name and embedder_config.config:
# 使用高层 API 获取 ModelService 配置
base_url, api_key = cls._resolve_model_service_config(
model_service_name, config
)
embedder_config_dict = {
"model": embedder_config.config.model,
"openai_base_url": base_url,
"api_key": api_key,
}
# 从 vector_store_config 中获取向量维度
if (
memory_collection.vector_store_config
and memory_collection.vector_store_config.config
and memory_collection.vector_store_config.config.vector_dimension
):
embedder_config_dict["embedding_dims"] = (
memory_collection.vector_store_config.config.vector_dimension
)
mem0_config["embedder"] = {
"provider": "openai", # mem0 使用 openai 兼容接口
"config": embedder_config_dict,
}
# 添加历史数据库路径
if history_db_path:
mem0_config["history_db_path"] = history_db_path
return mem0_config
@staticmethod
async def _resolve_model_service_config_async(
model_service_name: str, config: Optional[Config]
) -> Tuple[str, str]:
"""解析 ModelService 配置获取 baseUrl 和 apiKey(异步)
Args:
model_service_name: ModelService 名称
config: AgentRun 配置
Returns:
Tuple[str, str]: (base_url, api_key)
Raises:
ValueError: 如果配置信息不完整
"""
from agentrun.credential import Credential
from agentrun.model import ModelService
# 使用高层 API 获取 ModelService
model_service = await ModelService.get_by_name_async(
model_service_name, config=config
)
# 获取 provider_settings
if not model_service.provider_settings:
raise ValueError(
f"ModelService {model_service_name} providerSettings is empty"
)
base_url = model_service.provider_settings.base_url or ""
api_key = model_service.provider_settings.api_key or ""
# 如果有 credentialName,使用高层 API 获取 credential secret
credential_name = model_service.credential_name
if credential_name:
credential = await Credential.get_by_name_async(
credential_name, config=config
)
if credential.credential_secret:
api_key = credential.credential_secret
if not base_url:
raise ValueError(
f"ModelService {model_service_name} baseUrl is empty"
)
return base_url, api_key
@staticmethod
def _resolve_model_service_config(
model_service_name: str, config: Optional[Config]
) -> Tuple[str, str]:
"""解析 ModelService 配置获取 baseUrl 和 apiKey(同步)
Args:
model_service_name: ModelService 名称
config: AgentRun 配置
Returns:
Tuple[str, str]: (base_url, api_key)
Raises:
ValueError: 如果配置信息不完整
"""
from agentrun.credential import Credential
from agentrun.model import ModelService
# 使用高层 API 获取 ModelService
model_service = ModelService.get_by_name(
model_service_name, config=config
)
# 获取 provider_settings
if not model_service.provider_settings:
raise ValueError(
f"ModelService {model_service_name} providerSettings is empty"
)
base_url = model_service.provider_settings.base_url or ""
api_key = model_service.provider_settings.api_key or ""
# 如果有 credentialName,使用高层 API 获取 credential secret
credential_name = model_service.credential_name
if credential_name:
credential = Credential.get_by_name(credential_name, config=config)
if credential.credential_secret:
api_key = credential.credential_secret
if not base_url:
raise ValueError(
f"ModelService {model_service_name} baseUrl is empty"
)
return base_url, api_key