This commit is contained in:
tcmofashi
2026-04-03 23:18:30 +08:00
parent 185361f2c3
commit 7b9e1cf925
40 changed files with 52 additions and 86 deletions

View File

@@ -6,7 +6,7 @@ without the overhead of an Agent.
import asyncio
from agentlite import LLMClient, llm_complete, llm_stream
from agentlite import LLMClient
from agentlite.config import AgentConfig, ProviderConfig, ModelConfig
@@ -55,7 +55,7 @@ async def main():
)
# Create client
client = LLMClient(config)
LLMClient(config)
# Make a call
# response = await client.complete(
@@ -91,7 +91,7 @@ async def main():
temperature=0.8,
)
client = LLMClient(provider=provider)
LLMClient(provider=provider)
# response = await client.complete(
# user_prompt="What are the benefits of type hints?",