Skip to main content

BurmeseGPT is a Burmese-first AI ecosystem package, including Padauk, an agentic small language model built for tool use, function calling, and local deployment.

Project description

BurmeseGPT

BurmeseGPT is an open Burmese-first AI ecosystem created by Dr. Wai Yan Nyein Naing. This Python package is the main package for BurmeseGPT projects, including Padauk, a practical agentic small language model built for Burmese language understanding, tool use, function calling, and local or edge deployment.

Why BurmeseGPT

Burmese is still a low-resource language in AI, and practical Burmese AI tooling remains limited for many real developer workflows. BurmeseGPT focuses on useful, production-minded, and developer-friendly Burmese AI systems that can run locally and integrate with modern agent and API patterns.

Related projects

  • Padauk - Burmese-first agentic language model.
  • Burmese-Coder - Burmese coding and technical AI direction.
  • Future tools and integrations under the BurmeseGPT ecosystem.

Installation

# Core package (download + info)
pip install burmesegpt

# Local OpenAI-compatible server runtime
pip install "burmesegpt[server]"

# OpenAI Python SDK integration helpers
pip install "burmesegpt[openai]"

# Full install (recommended)
pip install "burmesegpt[full]"

download and info work with core install. serve and run (without --base-url) require burmesegpt[server]. smoke-test --client openai requires burmesegpt[openai].

Real model run (recommended)

pip install "burmesegpt[full]"
burmesegpt download --quant q8_0
burmesegpt serve --quant q8_0 --host 127.0.0.1 --port 8000

Developer/CI smoke test (no model download)

burmesegpt serve --test-mode --port 8000
burmesegpt smoke-test --base-url http://127.0.0.1:8000/v1 --model padauk-agent
burmesegpt smoke-test --client openai --base-url http://127.0.0.1:8000/v1 --model padauk-agent

OpenAI-compatible Python usage

from openai import OpenAI

client = OpenAI(base_url="http://127.0.0.1:8000/v1", api_key="sk-no-key-required")
response = client.chat.completions.create(
    model="padauk-agent",
    messages=[{"role": "user", "content": "မင်္ဂလာပါ"}],
)
print(response.choices[0].message.content)

OpenAI Agents SDK usage

pip install openai-agents
import asyncio

from openai import AsyncOpenAI
from agents import Agent, Runner, set_default_openai_api, set_default_openai_client, set_tracing_disabled

set_tracing_disabled(True)
set_default_openai_api("chat_completions")
set_default_openai_client(
    AsyncOpenAI(base_url="http://127.0.0.1:8000/v1", api_key="sk-no-key-required")
)

padauk = Agent(
    name="Padauk Assistant",
    model="padauk-agent",
    instructions="You are Padauk, a Burmese-first assistant. Reply in Burmese by default.",
)

async def main() -> None:
    result = await Runner.run(padauk, input="မင်္ဂလာပါ")
    print(result.final_output)

asyncio.run(main())

Padauk system prompt note

model/Modelfile includes a Burmese custom SYSTEM prompt for Padauk, but this package currently serves GGUF directly with llama_cpp.server and does not automatically inject that SYSTEM block. If you need strict persona behavior, provide a system message (or Agent.instructions) from your client.

CLI commands

  • burmesegpt download - Download and checksum-verify a quantized GGUF artifact.
  • burmesegpt serve - Start a local OpenAI-compatible API server.
  • burmesegpt run - Interactive chat (boots local server or uses --base-url).
  • burmesegpt smoke-test - Validate /models and /chat/completions.
  • burmesegpt info - Print package/model configuration as JSON.

Useful options:

  • --quant: q4_k_m (default), q5_k_m, q8_0
  • --repo-id, --revision, --cache-dir, --hf-token (or HF_TOKEN)
  • Shared options work both before and after subcommands.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

burmesegpt-0.1.2.tar.gz (17.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

burmesegpt-0.1.2-py3-none-any.whl (11.7 kB view details)

Uploaded Python 3

File details

Details for the file burmesegpt-0.1.2.tar.gz.

File metadata

  • Download URL: burmesegpt-0.1.2.tar.gz
  • Upload date:
  • Size: 17.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for burmesegpt-0.1.2.tar.gz
Algorithm Hash digest
SHA256 4b6e6b47b63ab66ac1abd6f5685b1bb3a87d4e9536350ca4e65099f4b3a835ef
MD5 e5b905c11fbfae3fdb54db217eedf7c9
BLAKE2b-256 eb0b24005402d6bb53029d679f8acae8d7ada02b45f9da5b2f5e54364f4fe2e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for burmesegpt-0.1.2.tar.gz:

Publisher: publish-pypi.yml on WaiYanNyeinNaing/burmese-gpt-pypi-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file burmesegpt-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: burmesegpt-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for burmesegpt-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c069693c92aa211c080da08ea115297092e95010d7cfa0369cd66a0df253de0a
MD5 b183801f196ad6520b76d969c9bb0370
BLAKE2b-256 b3469a98bbf59d0085047c9bff05e232829eeb21fa0e88443424da59c39532e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for burmesegpt-0.1.2-py3-none-any.whl:

Publisher: publish-pypi.yml on WaiYanNyeinNaing/burmese-gpt-pypi-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page