Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions HYPERFORGE.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ RUN uv sync --active --frozen --directory /app --compile-bytecode
FROM python:3.14
COPY --from=build /app /app
ENV PATH=/app/bin:$PATH

# OCI metadata: links this image to the GitHub repo as a package, with source + license.
LABEL org.opencontainers.image.source="https://github.com/nuclia/hyperforge" \
org.opencontainers.image.description="Agentic workflow on top of NUA" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.authors="Nuclia Team"
3 changes: 3 additions & 0 deletions agents/smart/src/hyperforge_smart/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .agent import SmartAgent

__all__ = ["SmartAgent"]
4 changes: 2 additions & 2 deletions hyperforge/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ license = "Apache-2.0"
dependencies = [
"alembic",
"pydantic",
"nuclia>=4.9.25",
"nuclia-models>=0.52.1",
"nuclia>=4.11.5",
"nuclia-models>=0.59.0",
"nucliadb-models>=6.13.1.post6414",
"nucliadb-sdk>=6.13.1.post6414",
"nucliadb-telemetry[otel]",
Expand Down
1 change: 1 addition & 0 deletions hyperforge/src/hyperforge/broker/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def from_url(
client = Redis.from_url(
url,
decode_responses=True,
socket_timeout=keepalive_ms / 1000,
)
return cls(client, activate_subject, keepalive_ms)

Expand Down
3 changes: 3 additions & 0 deletions hyperforge/src/hyperforge/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ async def execute_raw_streaming(
result.object = c.object
elif isinstance(c, MetaGenerativeResponse):
result.timings = c.timings
result.learning_id = c.learning_id
result.model_name = c.model_name
result.trace_id = c.trace_id
elif isinstance(c, CitationsGenerativeResponse):
result.citations = c.citations
elif isinstance(c, FootnoteCitationsGenerativeResponse):
Expand Down
16 changes: 8 additions & 8 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading