Skip to main content

Package defining the WayFlow core library and the assistant abstractions.

Project description

🔗 WayFlow Core

PyPI - Version PyPI - License PyPI - Downloads

WayFlow Core is the foundational Python library of the WayFlow ecosystem. It provides the runtime engine, abstractions, and components needed to build powerful AI assistants using Agents, Flows, or hybrid architectures.

WayFlow Core is:

  • 🔧 Flexible — Build assistants using Agents, Flows, or both
  • 🔗 Interoperable — Works with OCI GenAI, OpenAI, Ollama, and other LLM providers
  • 🧩 Composable — Encourages modular, reusable building blocks
  • 🚀 Extensible & Open — Designed for advanced agentic applications

⚡ Quick Install

pip install wayflowcore

(Optional, faster installation using uv)

pip install uv
uv pip install wayflowcore

🧠 Quick Start

1. Initialize an LLM

Initialize a Large Language Model (LLM) of your choice:

OCI Gen AI Open AI Ollama
from wayflowcore.models import OCIGenAIModel

llm = OCIGenAIModel(
model_id="provider.model-id",
service_endpoint="https://url-to-service-endpoint.com",
compartment_id="compartment-id",
auth_type="API_KEY",
)
from wayflowcore.models import OpenAIModel

llm = OpenAIModel(
model_id="model-id",
)
from wayflowcore.models import OllamaModel

llm = OllamaModel(
model_id="model-id",
)

2. Create an Assistant

from wayflowcore.agent import Agent

assistant = Agent(llm=llm)

conversation = assistant.start_conversation()
conversation.append_user_message("I need help regarding my sql query")
conversation.execute()

# get the assistant's response to your query
assistant_answer = conversation.get_last_message()
assistant_answer.content
# I'd be happy to help with your SQL query...

🧩 What You Can Build

WayFlow Core supports a wide range of agentic patterns:

  • 💬 Conversational assistants
  • 🔁 Flow-based assistants with structured sequencing
  • 🤝 Multi-agent systems
  • 🛠️ Tool-calling agents
  • 🧪 Automated code review assistants
  • 📚 Domain-specific knowledge assistants

💁 Contributing

Contributions are welcome! Please refer to the contributor guide located at the root of the repository.


🔐 Security

For responsibly reporting security issues, please refer to the project's security guidelines.


📄 License

WayFlow Core is dual-licensed under:

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

wayflowcore-25.4.2-py3-none-any.whl (619.0 kB view details)

Uploaded Python 3

File details

Details for the file wayflowcore-25.4.2-py3-none-any.whl.

File metadata

  • Download URL: wayflowcore-25.4.2-py3-none-any.whl
  • Upload date:
  • Size: 619.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for wayflowcore-25.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cb21e5114c54aec6f10d418fddcc9a58894f1de1c1f72f25fbadaf9effa8342f
MD5 8365cdf0791c0cfdd45ed1b8ffa057d6
BLAKE2b-256 c11ea2170677387daf51f9209f6f6e2c8405544659e851b5db6a56fea3901026

See more details on using hashes here.

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