feat: use instructions field for sleeptime and update web/ade ui (#2096)

This commit is contained in:
jnjpng
2025-05-12 09:51:36 -07:00
committed by GitHub
parent 004d76713a
commit 314d30cb8f
2 changed files with 2 additions and 1 deletions

View File

@@ -101,6 +101,7 @@ def create_source(
name=source_create.name,
embedding_config=source_create.embedding_config,
description=source_create.description,
instructions=source_create.instructions,
metadata=source_create.metadata,
)
return server.source_manager.create_source(source=source, actor=actor)

View File

@@ -1115,7 +1115,7 @@ class SyncServer(Server):
),
CreateBlock(
label="instructions",
value=source.description,
value=source.instructions,
),
],
llm_config=main_agent.llm_config,