MCPcopy
hub / github.com/Fosowl/agenticSeek / process

Method process

sources/agents/casual_agent.py:26–32  ·  view source on GitHub ↗
(self, prompt, speech_module)

Source from the content-addressed store, hash-verified

24 model_provider=provider.get_model_name())
25
26 async def process(self, prompt, speech_module) -> str:
27 self.memory.push('user', prompt)
28 animate_thinking("Thinking...", color="status")
29 answer, reasoning = await self.llm_request()
30 self.last_answer = answer
31 self.status_message = "Ready"
32 return answer, reasoning
33
34if __name__ == "__main__":
35 pass

Callers

nothing calls this directly

Calls 3

animate_thinkingFunction · 0.90
pushMethod · 0.80
llm_requestMethod · 0.80

Tested by

no test coverage detected