Metadata-Version: 2.4
Name: sefios
Version: 0.1.1
Summary: Opinionated Stack for building applications with the Sefia framework.
Project-URL: Homepage, https://github.com/nueruyu/sefia
Project-URL: Repository, https://github.com/nueruyu/sefia
Project-URL: Issues, https://github.com/nueruyu/sefia/issues
Project-URL: Documentation, https://github.com/nueruyu/sefia/tree/main/docs
Author: nueruyu
License: MIT License
        
        Copyright (c) 2026 nueruyu
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: agents,durable-execution,human-in-the-loop,llm,sefia
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: glyff-file-store>=0.13.0
Requires-Dist: glyff-pydantic>=0.13.0
Requires-Dist: glyff>=0.13.0
Requires-Dist: sefia>=0.1.0
Provides-Extra: all
Requires-Dist: ddgs>=9.0; extra == 'all'
Requires-Dist: sefia-fastapi>=0.1.0; extra == 'all'
Requires-Dist: sefia-litellm>=0.1.0; extra == 'all'
Requires-Dist: sefia-typer>=0.1.0; extra == 'all'
Provides-Extra: cli
Requires-Dist: sefia-typer>=0.1.0; extra == 'cli'
Provides-Extra: fastapi
Requires-Dist: sefia-fastapi>=0.1.0; extra == 'fastapi'
Provides-Extra: litellm
Requires-Dist: sefia-litellm>=0.1.0; extra == 'litellm'
Provides-Extra: web
Requires-Dist: ddgs>=9.0; extra == 'web'
Description-Content-Type: text/markdown

# sefios

Opinionated Stack for building applications with the
[Sefia](https://pypi.org/project/sefia/) framework.

Where `sefia` is the core framework (decorators, session, tool system),
`sefios` layers the pieces an application actually ships with: session
scoping and persistence, state containers, built-in tools, and integration
wiring for CLI and HTTP front ends.

## Install

```bash
pip install 'sefios[litellm]'
```

Extras:

| Extra       | Pulls in                            | Purpose                          |
| ----------- | ----------------------------------- | -------------------------------- |
| `litellm`   | [`sefia-litellm`](https://pypi.org/project/sefia-litellm/) | LLM providers via LiteLLM        |
| `cli`       | [`sefia-typer`](https://pypi.org/project/sefia-typer/)     | Typer (CLI) integration          |
| `fastapi`   | [`sefia-fastapi`](https://pypi.org/project/sefia-fastapi/) | FastAPI (HTTP) integration       |
| `web`       | `ddgs`                              | Built-in web search tool         |
| `all`       | all of the above                    |                                  |

## Documentation

See the [repository](https://github.com/nueruyu/sefia) for the full README,
tutorial, and architecture docs.

## Status

Early development. APIs may change before v1.0.

## License

MIT
