change signature

This commit is contained in:
2026-01-22 03:33:06 -08:00
parent 8f37131ab8
commit d49904cc44
2 changed files with 4 additions and 4 deletions

View File

@@ -237,7 +237,7 @@ def select_model():
class CodingAssistant(dspy.Signature):
"""You are a concise coding assistant. Help the user with their coding task by using the available tools to read, write, edit files, search the codebase, and run commands."""
"""You are a concise coding assistant with access to sub agents."""
task: str = dspy.InputField(desc="The user's coding task or question")
answer: str = dspy.OutputField(
@@ -566,5 +566,5 @@ def main():
if __name__ == "__main__":
agent = RLMCodingProgram(RLMCodingConfig())
agent.push_to_hub(MODAIC_REPO_PATH, commit_message="Add tool logs", branch="prod")
agent.push_to_hub(MODAIC_REPO_PATH, commit_message="change signature", branch="prod")
#main()