Skip to content

Agentics2.0 Full Release#93

Merged
D3f0 merged 35 commits into
mainfrom
agentics2.0
Dec 16, 2025
Merged

Agentics2.0 Full Release#93
D3f0 merged 35 commits into
mainfrom
agentics2.0

Conversation

@gliozzo
Copy link
Copy Markdown
Collaborator

@gliozzo gliozzo commented Nov 23, 2025

Includes Substantial Changes

  1. Transducible Functions
  2. Explainability
  3. Dynamic Composition
  4. Cleaned up tutorials
  5. Removed Applications

@junkyul
Copy link
Copy Markdown
Collaborator

junkyul commented Nov 25, 2025

In PydanticTransducerCrewAI, adding cache=False and rpm=200 may reduce transduction failure due to LLM server

  • rpm limites the number of calls per miniute.
  • I observed a bursty behavior, while transducing 90 questions in bird, it was slient for a long time and finished all transduction in 15 seconds. This causes trouble when I was trying to transduce 1500 questions at once.
agent = Agent(
            role=self.prompt_params["role"],
            goal=self.prompt_params["goal"],
            backstory=self.prompt_params["backstory"],
            verbose=verbose,
            max_iter=max_iter,
            llm=self.llm,
            tools=tools if tools else [],
            cache=False
        )
        self.crew = Crew(
            agents=[agent],
            tasks=[task],
            process=Process.sequential,
            verbose=verbose,
            manager_llm=self.llm,
            function_calling_llm=self.llm,
            chat_llm=self.llm,
            cache=False,
            rmp=200
        )

@junkyul
Copy link
Copy Markdown
Collaborator

junkyul commented Nov 25, 2025

In Documentation on Transducible Function,
importance concepts need definitions.

  • ordinary functions
  • structural transparency

In addition, this is a question.

  • slot-level provenance: the definition implies it is 1:1 mapping between slots in the input and the output type. Is it necessary? In the end, one could apply semantic merge like operations on the fields to yield a single field but this needs clarification since it could also be 1:N or N:M, which we might want to exclude.

Nahuel Defossé added 4 commits November 25, 2025 18:19
Signed-off-by: Nahuel Defossé <nahuel.deofsse@ibm.com>
Signed-off-by: Nahuel Defossé <nahuel.deofsse@ibm.com>
Signed-off-by: Nahuel Defossé <nahuel.deofsse@ibm.com>
Signed-off-by: Nahuel Defossé <nahuel.deofsse@ibm.com>
Signed-off-by: Alfio Gliozzo <gliozzo@us.ibm.com>
Alfio Gliozzo and others added 4 commits November 26, 2025 11:16
Signed-off-by: Alfio Gliozzo <gliozzo@us.ibm.com>
Signed-off-by: Nahuel Defossé <nahuel.deofsse@ibm.com>
Signed-off-by: Nahuel Defossé <nahuel.deofsse@ibm.com>
@D3f0 D3f0 merged commit fcc2c8c into main Dec 16, 2025
4 of 5 checks passed
@D3f0 D3f0 deleted the agentics2.0 branch December 16, 2025 15:04
abhigoel25 pushed a commit to Chaitya0623/Agentics-Research that referenced this pull request Jan 14, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants