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].

Quick smoke test (no model download)

pip install "burmesegpt[full]"
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

Real model run

burmesegpt download --quant q8_0
burmesegpt serve --quant q8_0 --host 127.0.0.1 --port 8000

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.1.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.1-py3-none-any.whl (11.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: burmesegpt-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 87b74f3184c3b2b534622f2dd0d359173b9629e29a0ed000b56ab6ebfa3bf7b4
MD5 9440216b1f622e3f3e72a02ef5426b74
BLAKE2b-256 87d45c57ce5a4f8297411cb03ff19e7a0e720af4682994f9e4708b440bd1aa57

See more details on using hashes here.

Provenance

The following attestation bundles were made for burmesegpt-0.1.1.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.1-py3-none-any.whl.

File metadata

  • Download URL: burmesegpt-0.1.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0654978a1aeca65463d18fede49bd9102a60cd5833b1be09a6b3ef52d7c09f2f
MD5 6926f82e0a9c864a77b239b6f92540e2
BLAKE2b-256 0ce29fae862986919ac71f4fca7622d75d1f515282c9c6dd0042e32b42c8d297

See more details on using hashes here.

Provenance

The following attestation bundles were made for burmesegpt-0.1.1-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