skills/skills.volces.com/pywayne-llm-chat-bot

pywayne-llm-chat-bot

Installation
SKILL.md

Pywayne LLM Chat Bot

This module provides a synchronous LLM chat interface compatible with OpenAI APIs (including local servers like Ollama).

Quick Start

from pywayne.llm.chat_bot import LLMChat

# Create chat instance
chat = LLMChat(
    base_url="https://api.example.com/v1",
    api_key="your_api_key",
    model="deepseek-chat"
)

# Single-turn conversation (non-streaming)
response = chat.ask("Hello, LLM!", stream=False)
print(response)
Installs
4
First Seen
Apr 20, 2026
pywayne-llm-chat-bot from skills.volces.com