A Python toolkit for advanced data processing and API interactions
Project description
descartcan
LLM
Step1, llm_config.yaml
openai:
keys:
- name: "openai_key1"
api_key: "XXX"
models:
gpt4: "gpt-4-0125-preview"
gpt40: "gpt-4o"
bedrock:
keys:
- name: "bedrock"
api_key: "XXX"
api_secret: "XXXXX"
models:
haiku35: "us.anthropic.claude-3-5-haiku-20241022-v1:0"
Step2, load models
from descartcan.llm.factory import LLModelFactory
model_factory = LLModelFactory.from_config(config="llm_config.yaml")
model = model_factory.get_model("openai.gpt4")
# 单轮对话
response = await model.chat(
question="Show Python",
system="你是一个编程专家"
)
print(f"回复: {response.content}")
print(f"Token统计: 提示词{response.prompt_tokens}, 生成{response.completion_tokens}, 总计{response.total_tokens}")
# 多轮对话
history = [
{"role": "user", "content": "Python和Java的区别是什么?"},
{"role": "assistant", "content": "Python和Java有以下主要区别:..."}
]
response = await model.chat(
question="哪个更适合初学者?",
system="你是一个编程专家",
history=history
)
print(f"多轮对话回复: {response.content}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
descartcan-2025.6.28.6.tar.gz
(39.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file descartcan-2025.6.28.6.tar.gz.
File metadata
- Download URL: descartcan-2025.6.28.6.tar.gz
- Upload date:
- Size: 39.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74f335aa1b21e76a1964809058427efa59ff9af89864dc4cb6ff729f598c7321
|
|
| MD5 |
f785a3717de85ed0ee5ef77d5cf51e3c
|
|
| BLAKE2b-256 |
1f7ce40ba34475e80323c4affb6504875afdf0e0258265ff382f5dc1dfe16059
|
File details
Details for the file descartcan-2025.6.28.6-py3-none-any.whl.
File metadata
- Download URL: descartcan-2025.6.28.6-py3-none-any.whl
- Upload date:
- Size: 60.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a52c2ea830ddd8fbe394748aa410c1e40e958804dde993ed2f119aa2827ab0d
|
|
| MD5 |
77b828df269d9af07803172347e5fe97
|
|
| BLAKE2b-256 |
ce0c2941f88ec042a7962cc154353ad6350d454a3e5fe9404d39ad36471b0e3f
|