ommlds 0.0.0.dev489__py3-none-any.whl → 0.0.0.dev491__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ommlds/.omlish-manifests.json +3 -3
- ommlds/README.md +11 -0
- ommlds/__about__.py +1 -1
- ommlds/backends/ollama/_dataclasses.py +53 -23
- ommlds/backends/ollama/protocol.py +3 -0
- ommlds/cli/_dataclasses.py +835 -356
- ommlds/cli/main.py +80 -41
- ommlds/cli/rendering/types.py +6 -0
- ommlds/cli/sessions/chat/configs.py +4 -12
- ommlds/cli/sessions/chat/{chat → drivers}/ai/configs.py +3 -1
- ommlds/cli/sessions/chat/drivers/ai/events.py +57 -0
- ommlds/cli/sessions/chat/{chat → drivers}/ai/inject.py +10 -3
- ommlds/cli/sessions/chat/{chat → drivers}/ai/rendering.py +1 -1
- ommlds/cli/sessions/chat/{chat → drivers}/ai/services.py +1 -1
- ommlds/cli/sessions/chat/{chat → drivers}/ai/tools.py +1 -1
- ommlds/cli/sessions/chat/{chat → drivers}/ai/types.py +9 -0
- ommlds/cli/sessions/chat/drivers/configs.py +25 -0
- ommlds/cli/sessions/chat/drivers/driver.py +49 -0
- ommlds/cli/sessions/chat/drivers/events/inject.py +27 -0
- ommlds/cli/sessions/chat/drivers/events/injection.py +14 -0
- ommlds/cli/sessions/chat/drivers/events/manager.py +16 -0
- ommlds/cli/sessions/chat/drivers/events/types.py +38 -0
- ommlds/cli/sessions/chat/drivers/inject.py +69 -0
- ommlds/cli/sessions/chat/{chat → drivers}/state/inject.py +3 -3
- ommlds/cli/sessions/chat/{chat → drivers}/state/types.py +1 -1
- ommlds/cli/sessions/chat/{tools → drivers/tools}/configs.py +2 -2
- ommlds/cli/sessions/chat/drivers/tools/confirmation.py +44 -0
- ommlds/cli/sessions/chat/{tools → drivers/tools}/execution.py +3 -4
- ommlds/cli/sessions/chat/{tools → drivers/tools}/fs/inject.py +3 -3
- ommlds/cli/sessions/chat/{tools → drivers/tools}/inject.py +4 -12
- ommlds/cli/sessions/chat/{tools → drivers/tools}/injection.py +1 -1
- ommlds/cli/sessions/chat/{tools → drivers/tools}/rendering.py +3 -3
- ommlds/cli/sessions/chat/{tools → drivers/tools}/todo/inject.py +3 -3
- ommlds/cli/sessions/chat/{tools → drivers/tools}/weather/tools.py +1 -1
- ommlds/cli/sessions/chat/drivers/types.py +10 -0
- ommlds/cli/sessions/chat/{chat → drivers}/user/configs.py +0 -2
- ommlds/cli/sessions/chat/drivers/user/inject.py +40 -0
- ommlds/cli/sessions/chat/inject.py +4 -32
- ommlds/cli/sessions/chat/interfaces/bare/inject.py +61 -0
- ommlds/cli/sessions/chat/interfaces/bare/interactive.py +41 -0
- ommlds/cli/sessions/chat/{interface/bare/interface.py → interfaces/bare/oneshot.py} +5 -3
- ommlds/cli/sessions/chat/{tools/confirmation.py → interfaces/bare/tools.py} +3 -22
- ommlds/cli/sessions/chat/{interface → interfaces}/bare/user.py +1 -1
- ommlds/cli/sessions/chat/{interface → interfaces}/configs.py +8 -0
- ommlds/cli/sessions/chat/interfaces/textual/__init__.py +0 -0
- ommlds/cli/sessions/chat/interfaces/textual/app.py +217 -0
- ommlds/cli/sessions/chat/interfaces/textual/inject.py +67 -0
- ommlds/cli/sessions/chat/{interface → interfaces}/textual/interface.py +0 -3
- ommlds/cli/sessions/chat/interfaces/textual/styles/__init__.py +29 -0
- ommlds/cli/sessions/chat/interfaces/textual/styles/input.tcss +51 -0
- ommlds/cli/sessions/chat/interfaces/textual/styles/markdown.tcss +7 -0
- ommlds/cli/sessions/chat/interfaces/textual/styles/messages.tcss +104 -0
- ommlds/cli/sessions/chat/interfaces/textual/widgets/__init__.py +0 -0
- ommlds/cli/sessions/chat/interfaces/textual/widgets/input.py +36 -0
- ommlds/cli/sessions/chat/interfaces/textual/widgets/messages.py +114 -0
- ommlds/cli/sessions/chat/session.py +1 -1
- ommlds/minichain/backends/impls/ollama/chat.py +24 -56
- ommlds/minichain/backends/impls/ollama/protocol.py +144 -0
- ommlds/nanochat/rustbpe/README.md +9 -0
- {ommlds-0.0.0.dev489.dist-info → ommlds-0.0.0.dev491.dist-info}/METADATA +6 -6
- {ommlds-0.0.0.dev489.dist-info → ommlds-0.0.0.dev491.dist-info}/RECORD +91 -73
- ommlds/cli/sessions/chat/chat/user/inject.py +0 -52
- ommlds/cli/sessions/chat/chat/user/oneshot.py +0 -25
- ommlds/cli/sessions/chat/chat/user/types.py +0 -15
- ommlds/cli/sessions/chat/driver.py +0 -43
- ommlds/cli/sessions/chat/interface/bare/inject.py +0 -32
- ommlds/cli/sessions/chat/interface/textual/app.py +0 -191
- ommlds/cli/sessions/chat/interface/textual/inject.py +0 -27
- ommlds/cli/sessions/chat/interface/textual/user.py +0 -20
- /ommlds/cli/sessions/chat/{chat → drivers}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{chat → drivers}/ai/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{chat → drivers}/ai/injection.py +0 -0
- /ommlds/cli/sessions/chat/{chat/state → drivers/events}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{chat/user → drivers/phases}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{phases → drivers/phases}/inject.py +0 -0
- /ommlds/cli/sessions/chat/{phases → drivers/phases}/injection.py +0 -0
- /ommlds/cli/sessions/chat/{phases → drivers/phases}/manager.py +0 -0
- /ommlds/cli/sessions/chat/{phases → drivers/phases}/types.py +0 -0
- /ommlds/cli/sessions/chat/{interface → drivers/state}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{chat → drivers}/state/configs.py +0 -0
- /ommlds/cli/sessions/chat/{chat → drivers}/state/inmemory.py +0 -0
- /ommlds/cli/sessions/chat/{chat → drivers}/state/storage.py +0 -0
- /ommlds/cli/sessions/chat/{interface/bare → drivers/tools}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{interface/textual → drivers/tools/fs}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{tools → drivers/tools}/fs/configs.py +0 -0
- /ommlds/cli/sessions/chat/{phases → drivers/tools/todo}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{tools → drivers/tools}/todo/configs.py +0 -0
- /ommlds/cli/sessions/chat/{tools → drivers/tools/weather}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{tools → drivers/tools}/weather/configs.py +0 -0
- /ommlds/cli/sessions/chat/{tools → drivers/tools}/weather/inject.py +0 -0
- /ommlds/cli/sessions/chat/{tools/fs → drivers/user}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{tools/todo → interfaces}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{tools/weather → interfaces/bare}/__init__.py +0 -0
- /ommlds/cli/sessions/chat/{interface → interfaces}/base.py +0 -0
- /ommlds/cli/sessions/chat/{interface → interfaces}/inject.py +0 -0
- {ommlds-0.0.0.dev489.dist-info → ommlds-0.0.0.dev491.dist-info}/WHEEL +0 -0
- {ommlds-0.0.0.dev489.dist-info → ommlds-0.0.0.dev491.dist-info}/entry_points.txt +0 -0
- {ommlds-0.0.0.dev489.dist-info → ommlds-0.0.0.dev491.dist-info}/licenses/LICENSE +0 -0
- {ommlds-0.0.0.dev489.dist-info → ommlds-0.0.0.dev491.dist-info}/top_level.txt +0 -0
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import abc
|
|
2
|
-
import typing as ta
|
|
3
|
-
|
|
4
|
-
from omlish import lang
|
|
5
|
-
|
|
6
|
-
from ...... import minichain as mc
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
##
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class UserChatInput(lang.Abstract):
|
|
13
|
-
@abc.abstractmethod
|
|
14
|
-
def get_next_user_messages(self) -> ta.Awaitable['mc.UserChat']:
|
|
15
|
-
raise NotImplementedError
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
from .chat.ai.types import AiChatGenerator
|
|
2
|
-
from .chat.state.types import ChatStateManager
|
|
3
|
-
from .chat.user.types import UserChatInput
|
|
4
|
-
from .phases.manager import ChatPhaseManager
|
|
5
|
-
from .phases.types import ChatPhase
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
##
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class ChatDriver:
|
|
12
|
-
def __init__(
|
|
13
|
-
self,
|
|
14
|
-
*,
|
|
15
|
-
phases: ChatPhaseManager,
|
|
16
|
-
ai_chat_generator: AiChatGenerator,
|
|
17
|
-
user_chat_input: UserChatInput,
|
|
18
|
-
chat_state_manager: ChatStateManager,
|
|
19
|
-
):
|
|
20
|
-
super().__init__()
|
|
21
|
-
|
|
22
|
-
self._phases = phases
|
|
23
|
-
self._ai_chat_generator = ai_chat_generator
|
|
24
|
-
self._user_chat_input = user_chat_input
|
|
25
|
-
self._chat_state_manager = chat_state_manager
|
|
26
|
-
|
|
27
|
-
async def run(self) -> None:
|
|
28
|
-
await self._phases.set_phase(ChatPhase.STARTING)
|
|
29
|
-
await self._phases.set_phase(ChatPhase.STARTED)
|
|
30
|
-
|
|
31
|
-
while True:
|
|
32
|
-
next_user_chat = await self._user_chat_input.get_next_user_messages()
|
|
33
|
-
if not next_user_chat:
|
|
34
|
-
break
|
|
35
|
-
|
|
36
|
-
prev_user_chat = (await self._chat_state_manager.get_state()).chat
|
|
37
|
-
|
|
38
|
-
next_ai_chat = await self._ai_chat_generator.get_next_ai_messages([*prev_user_chat, *next_user_chat])
|
|
39
|
-
|
|
40
|
-
await self._chat_state_manager.extend_chat([*next_user_chat, *next_ai_chat])
|
|
41
|
-
|
|
42
|
-
await self._phases.set_phase(ChatPhase.STOPPING)
|
|
43
|
-
await self._phases.set_phase(ChatPhase.STOPPED)
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
from omlish import inject as inj
|
|
2
|
-
from omlish import lang
|
|
3
|
-
|
|
4
|
-
from ..base import ChatInterface
|
|
5
|
-
from ..configs import InterfaceConfig
|
|
6
|
-
from .interface import BareChatInterface
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
with lang.auto_proxy_import(globals()):
|
|
10
|
-
from .....inputs import asyncs as _inputs_asyncs
|
|
11
|
-
from .....inputs import sync as _inputs_sync
|
|
12
|
-
from ...chat.user import types as _user_types
|
|
13
|
-
from . import user as _user
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
##
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
def bind_bare(cfg: InterfaceConfig = InterfaceConfig()) -> inj.Elements:
|
|
20
|
-
els: list[inj.Elemental] = [
|
|
21
|
-
inj.bind(ChatInterface, to_ctor=BareChatInterface, singleton=True),
|
|
22
|
-
]
|
|
23
|
-
|
|
24
|
-
if cfg.interactive:
|
|
25
|
-
els.append(inj.bind(_user_types.UserChatInput, to_ctor=_user.InteractiveUserChatInput, singleton=True))
|
|
26
|
-
|
|
27
|
-
els.extend([
|
|
28
|
-
inj.bind(_inputs_sync.SyncStringInput, to_const=_inputs_sync.InputSyncStringInput(use_readline=cfg.use_readline)), # noqa
|
|
29
|
-
inj.bind(_inputs_asyncs.AsyncStringInput, to_ctor=_inputs_asyncs.ThreadAsyncStringInput, singleton=True),
|
|
30
|
-
])
|
|
31
|
-
|
|
32
|
-
return inj.as_elements(*els)
|
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
import asyncio
|
|
2
|
-
import dataclasses as dc
|
|
3
|
-
import typing as ta
|
|
4
|
-
|
|
5
|
-
from omdev.tui import textual as tx
|
|
6
|
-
from omlish import check
|
|
7
|
-
|
|
8
|
-
from ...... import minichain as mc
|
|
9
|
-
from ...driver import ChatDriver
|
|
10
|
-
from .user import QueueUserChatInput
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
##
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
class UserMessage(tx.Static):
|
|
17
|
-
pass
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
class AiMessage(tx.Static):
|
|
21
|
-
pass
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
##
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class InputTextArea(tx.TextArea):
|
|
28
|
-
@dc.dataclass()
|
|
29
|
-
class Submitted(tx.Message):
|
|
30
|
-
text: str
|
|
31
|
-
|
|
32
|
-
def __init__(self, **kwargs: ta.Any) -> None:
|
|
33
|
-
super().__init__(**kwargs)
|
|
34
|
-
|
|
35
|
-
async def _on_key(self, event: tx.Key) -> None:
|
|
36
|
-
if event.key == 'enter':
|
|
37
|
-
event.prevent_default()
|
|
38
|
-
event.stop()
|
|
39
|
-
|
|
40
|
-
if text := self.text.strip():
|
|
41
|
-
self.post_message(self.Submitted(text))
|
|
42
|
-
|
|
43
|
-
else:
|
|
44
|
-
await super()._on_key(event)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
##
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
class ChatApp(tx.App):
|
|
51
|
-
def __init__(
|
|
52
|
-
self,
|
|
53
|
-
*,
|
|
54
|
-
chat_driver: ChatDriver,
|
|
55
|
-
queue_user_chat_input: QueueUserChatInput,
|
|
56
|
-
) -> None:
|
|
57
|
-
super().__init__()
|
|
58
|
-
|
|
59
|
-
self._chat_driver = chat_driver
|
|
60
|
-
self._queue_user_chat_input = queue_user_chat_input
|
|
61
|
-
|
|
62
|
-
CSS: ta.ClassVar[str] = """
|
|
63
|
-
#messages-scroll {
|
|
64
|
-
width: 100%;
|
|
65
|
-
height: 1fr;
|
|
66
|
-
|
|
67
|
-
padding: 0 2 0 2;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
#messages-container {
|
|
71
|
-
height: auto;
|
|
72
|
-
width: 100%;
|
|
73
|
-
|
|
74
|
-
margin-top: 1;
|
|
75
|
-
margin-bottom: 0;
|
|
76
|
-
|
|
77
|
-
layout: stream;
|
|
78
|
-
text-align: left;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
#input-outer {
|
|
82
|
-
width: 100%;
|
|
83
|
-
height: auto;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
#input-vertical {
|
|
87
|
-
width: 100%;
|
|
88
|
-
height: auto;
|
|
89
|
-
|
|
90
|
-
margin: 0 2 1 2;
|
|
91
|
-
|
|
92
|
-
padding: 0;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
#input-vertical2 {
|
|
96
|
-
width: 100%;
|
|
97
|
-
height: auto;
|
|
98
|
-
|
|
99
|
-
border: round $foreground-muted;
|
|
100
|
-
|
|
101
|
-
padding: 0 1;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
#input-horizontal {
|
|
105
|
-
width: 100%;
|
|
106
|
-
height: auto;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
#input-glyph {
|
|
110
|
-
width: auto;
|
|
111
|
-
|
|
112
|
-
padding: 0 1 0 0;
|
|
113
|
-
|
|
114
|
-
background: transparent;
|
|
115
|
-
color: $primary;
|
|
116
|
-
|
|
117
|
-
text-style: bold;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
#input {
|
|
121
|
-
width: 1fr;
|
|
122
|
-
height: auto;
|
|
123
|
-
max-height: 16;
|
|
124
|
-
|
|
125
|
-
border: none;
|
|
126
|
-
|
|
127
|
-
padding: 0;
|
|
128
|
-
|
|
129
|
-
background: transparent;
|
|
130
|
-
color: $text;
|
|
131
|
-
}
|
|
132
|
-
"""
|
|
133
|
-
|
|
134
|
-
ENABLE_COMMAND_PALETTE: ta.ClassVar[bool] = False
|
|
135
|
-
|
|
136
|
-
#
|
|
137
|
-
|
|
138
|
-
def compose(self) -> tx.ComposeResult:
|
|
139
|
-
with tx.VerticalScroll(id='messages-scroll'):
|
|
140
|
-
yield tx.Static(id='messages-container')
|
|
141
|
-
|
|
142
|
-
with tx.Static(id='input-outer'):
|
|
143
|
-
with tx.Vertical(id='input-vertical'):
|
|
144
|
-
with tx.Vertical(id='input-vertical2'):
|
|
145
|
-
with tx.Horizontal(id='input-horizontal'):
|
|
146
|
-
yield tx.Static('>', id='input-glyph')
|
|
147
|
-
yield InputTextArea(placeholder='...', id='input')
|
|
148
|
-
|
|
149
|
-
#
|
|
150
|
-
|
|
151
|
-
def _get_input_text_area(self) -> InputTextArea:
|
|
152
|
-
return self.query_one('#input', InputTextArea)
|
|
153
|
-
|
|
154
|
-
def _get_messages_container(self) -> tx.Static:
|
|
155
|
-
return self.query_one('#messages-container', tx.Static)
|
|
156
|
-
|
|
157
|
-
#
|
|
158
|
-
|
|
159
|
-
async def _mount_message(self, *messages: tx.Widget) -> None:
|
|
160
|
-
msg_ctr = self._get_messages_container()
|
|
161
|
-
|
|
162
|
-
for msg in messages:
|
|
163
|
-
await msg_ctr.mount(msg)
|
|
164
|
-
|
|
165
|
-
self.call_after_refresh(lambda: msg_ctr.scroll_end(animate=False))
|
|
166
|
-
|
|
167
|
-
#
|
|
168
|
-
|
|
169
|
-
_chat_driver_task: asyncio.Task | None = None
|
|
170
|
-
|
|
171
|
-
async def on_mount(self) -> None:
|
|
172
|
-
check.none(self._chat_driver_task)
|
|
173
|
-
self._chat_driver_task = asyncio.create_task(self._chat_driver.run())
|
|
174
|
-
|
|
175
|
-
self._get_input_text_area().focus()
|
|
176
|
-
|
|
177
|
-
await self._mount_message(UserMessage('Hello!'))
|
|
178
|
-
|
|
179
|
-
async def on_unmount(self) -> None:
|
|
180
|
-
await self._queue_user_chat_input.push_next_user_messages([])
|
|
181
|
-
await check.not_none(self._chat_driver_task)
|
|
182
|
-
|
|
183
|
-
async def on_input_text_area_submitted(self, event: InputTextArea.Submitted) -> None:
|
|
184
|
-
self._get_input_text_area().clear()
|
|
185
|
-
|
|
186
|
-
await self._mount_message(
|
|
187
|
-
UserMessage(event.text),
|
|
188
|
-
# AiMessage(f'You said: {event.text}!'),
|
|
189
|
-
)
|
|
190
|
-
|
|
191
|
-
await self._queue_user_chat_input.push_next_user_messages([mc.UserMessage(event.text)])
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
from omlish import inject as inj
|
|
2
|
-
|
|
3
|
-
from ...chat.user.types import UserChatInput
|
|
4
|
-
from ..base import ChatInterface
|
|
5
|
-
from .app import ChatApp
|
|
6
|
-
from .interface import TextualChatInterface
|
|
7
|
-
from .user import QueueUserChatInput
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
##
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
def bind_textual() -> inj.Elements:
|
|
14
|
-
els: list[inj.Elemental] = [
|
|
15
|
-
inj.bind(ChatInterface, to_ctor=TextualChatInterface, singleton=True),
|
|
16
|
-
]
|
|
17
|
-
|
|
18
|
-
els.extend([
|
|
19
|
-
inj.bind(ChatApp, singleton=True),
|
|
20
|
-
])
|
|
21
|
-
|
|
22
|
-
els.extend([
|
|
23
|
-
inj.bind(QueueUserChatInput, singleton=True),
|
|
24
|
-
inj.bind(UserChatInput, to_key=QueueUserChatInput),
|
|
25
|
-
])
|
|
26
|
-
|
|
27
|
-
return inj.as_elements(*els)
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import asyncio
|
|
2
|
-
|
|
3
|
-
from ...... import minichain as mc
|
|
4
|
-
from ...chat.user.types import UserChatInput
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
##
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class QueueUserChatInput(UserChatInput):
|
|
11
|
-
def __init__(self) -> None:
|
|
12
|
-
super().__init__()
|
|
13
|
-
|
|
14
|
-
self._queue: asyncio.Queue[mc.UserChat] = asyncio.Queue()
|
|
15
|
-
|
|
16
|
-
async def push_next_user_messages(self, chat: 'mc.UserChat') -> None:
|
|
17
|
-
await self._queue.put(chat)
|
|
18
|
-
|
|
19
|
-
async def get_next_user_messages(self) -> 'mc.UserChat':
|
|
20
|
-
return await self._queue.get()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|