Files
dsProject/dsLightRag/Test/TestGoogleGemini.py

14 lines
405 B
Python
Raw Normal View History

2025-08-15 16:18:41 +08:00
from Util.GoApiUtil import ModelInteractor
2025-08-15 16:17:26 +08:00
2025-08-15 16:16:15 +08:00
# 示例使用
if __name__ == "__main__":
# 创建模型交互器实例
interactor = ModelInteractor()
2025-08-15 16:17:26 +08:00
2025-08-15 16:16:15 +08:00
# 使用不同的模型和提示词
model_name = "gemini-2.5-pro"
prompt_text = "请详细介绍一下你自己,分成几个段落来说明"
2025-08-15 16:17:26 +08:00
2025-08-15 16:16:15 +08:00
# 发送流式请求
interactor.stream_request(model_name, prompt_text)