This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
from typing import NewType, Protocol | |
from dishka import Provider, Scope, make_container | |
from typing_extensions import override | |
Redis = NewType("Redis", dict[str, str]) | |
class AIGateway(Protocol): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[env] | |
TERM = "xterm-256color" | |
COLORTERM = "truecolor" | |
LANG = "en_US.UTF-8" | |
WINIT_X11_SCALE_FACTOR = "1.0" | |
[window] | |
opacity = 0.92 | |
decorations = "Buttonless" | |
padding = { x = 0, y = 0 } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[build-system] | |
requires = ["setuptools>=66.0"] | |
build-backend = "setuptools.build_meta" | |
[tool.setuptools] | |
include-package-data = true | |
[tool.setuptools.packages.find] | |
where = ["src"] |