remdb 0.3.118__py3-none-any.whl → 0.3.146__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.
Potentially problematic release.
This version of remdb might be problematic. Click here for more details.
- rem/agentic/agents/sse_simulator.py +2 -0
- rem/agentic/context.py +23 -3
- rem/agentic/mcp/tool_wrapper.py +126 -15
- rem/agentic/otel/setup.py +1 -0
- rem/agentic/providers/phoenix.py +371 -108
- rem/agentic/providers/pydantic_ai.py +122 -43
- rem/agentic/schema.py +4 -1
- rem/api/mcp_router/tools.py +13 -2
- rem/api/routers/chat/completions.py +250 -4
- rem/api/routers/chat/models.py +81 -7
- rem/api/routers/chat/otel_utils.py +33 -0
- rem/api/routers/chat/sse_events.py +17 -1
- rem/api/routers/chat/streaming.py +35 -1
- rem/api/routers/feedback.py +134 -14
- rem/auth/middleware.py +66 -1
- rem/cli/commands/cluster.py +590 -82
- rem/cli/commands/configure.py +3 -4
- rem/cli/commands/experiments.py +468 -76
- rem/cli/commands/session.py +336 -0
- rem/cli/dreaming.py +2 -2
- rem/cli/main.py +2 -0
- rem/config.py +8 -1
- rem/models/core/experiment.py +58 -14
- rem/models/entities/ontology.py +1 -1
- rem/models/entities/ontology_config.py +1 -1
- rem/schemas/agents/examples/contract-analyzer.yaml +1 -1
- rem/schemas/agents/examples/contract-extractor.yaml +1 -1
- rem/schemas/agents/examples/cv-parser.yaml +1 -1
- rem/services/phoenix/client.py +59 -18
- rem/services/postgres/pydantic_to_sqlalchemy.py +9 -12
- rem/services/session/compression.py +7 -0
- rem/settings.py +260 -17
- rem/sql/migrations/002_install_models.sql +91 -91
- rem/sql/migrations/004_cache_system.sql +1 -1
- rem/utils/README.md +45 -0
- rem/utils/files.py +157 -1
- rem/utils/schema_loader.py +94 -3
- rem/utils/vision.py +1 -1
- rem/workers/__init__.py +2 -1
- rem/workers/db_listener.py +579 -0
- {remdb-0.3.118.dist-info → remdb-0.3.146.dist-info}/METADATA +161 -147
- {remdb-0.3.118.dist-info → remdb-0.3.146.dist-info}/RECORD +44 -41
- {remdb-0.3.118.dist-info → remdb-0.3.146.dist-info}/WHEEL +0 -0
- {remdb-0.3.118.dist-info → remdb-0.3.146.dist-info}/entry_points.txt +0 -0
rem/cli/commands/configure.py
CHANGED
|
@@ -110,7 +110,7 @@ def prompt_llm_config(use_defaults: bool = False) -> dict:
|
|
|
110
110
|
config = {}
|
|
111
111
|
|
|
112
112
|
# Default values
|
|
113
|
-
default_model = "
|
|
113
|
+
default_model = "openai:gpt-4.1"
|
|
114
114
|
default_temperature = 0.5
|
|
115
115
|
|
|
116
116
|
if use_defaults:
|
|
@@ -124,9 +124,9 @@ def prompt_llm_config(use_defaults: bool = False) -> dict:
|
|
|
124
124
|
# Default model
|
|
125
125
|
click.echo("\nDefault LLM model (format: provider:model-id)")
|
|
126
126
|
click.echo("Examples:")
|
|
127
|
+
click.echo(" - openai:gpt-4.1")
|
|
127
128
|
click.echo(" - anthropic:claude-sonnet-4-5-20250929")
|
|
128
|
-
click.echo(" - openai:gpt-
|
|
129
|
-
click.echo(" - openai:gpt-4o-mini")
|
|
129
|
+
click.echo(" - openai:gpt-4.1-mini")
|
|
130
130
|
|
|
131
131
|
config["default_model"] = click.prompt(
|
|
132
132
|
"Default model", default=default_model
|
|
@@ -422,7 +422,6 @@ def configure_command(install: bool, claude_desktop: bool, show: bool, edit: boo
|
|
|
422
422
|
|
|
423
423
|
try:
|
|
424
424
|
import shutil
|
|
425
|
-
from pathlib import Path
|
|
426
425
|
from fastmcp.mcp_config import update_config_file, StdioMCPServer
|
|
427
426
|
|
|
428
427
|
# Find Claude Desktop config path
|