diff --git a/.gitignore b/.gitignore index b7faf40..744a42e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ +# User workspace (created by `opensensa init`) +agents/ +tools/ +opensensa.yaml + # Byte-compiled / optimized / DLL files __pycache__/ *.py[codz] diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..743ee38 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,27 @@ +# =========================================================================== +# Copyright (C) 2025 CapsicoHealth Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =========================================================================== + +FROM python:3.12-slim + +WORKDIR /app + +COPY pyproject.toml README.md LICENSE ./ +COPY src/ src/ + +RUN pip install --no-cache-dir -e . + +# Default: run both servers +CMD ["opensensa", "serve"] diff --git a/LICENSE b/LICENSE index 261eeb9..64a232b 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright © 2025 CapsicoHealth Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 1e01b14..e831e1c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,505 @@ -# OpenSensa -An agentic environment with confidential and regulatory environments in mind +
+ OpenSensa
+ Build multi-agent systems with markdown files, MCP tools, and the A2A protocol.
+
Select an agent to start chatting
+ Or create a new agent with the button above +