(20241212) Day-end push.

This commit is contained in:
2024-12-12 20:27:00 +05:30
parent e5d5c4c86d
commit e9a106dd91
10 changed files with 212 additions and 403 deletions
-2
View File
@@ -143,8 +143,6 @@ class LLMController(BaseModel):
# Invoke the AI, and format the response:
llm_response = await self.__llm.ainvoke(prompt)
print("LLM RESPONSE:", llm_response)
print("INPUT MESSAGES:", llm_input.messages)
llm_response = LLMOutput(
messages = llm_input.messages,
output = llm_response.content,