You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Great work, I am spending some time on this hoping to use it as a preferred option. Encountered some issues when trying to launch Agent studio. Maybe it's just me but I thought I'd leave it here.
Description
While implementing an AI agent using the Eternal AI framework, I encountered some inconsistencies between the documentation and the actual implementation.
1. API Documentation vs testing
// What documentation suggests:import{BaseDagent,IAgentCharacter,InitAgent}from"@eternal-dagent/core";// What actually works:import{AgentClientasBaseDagent,IAgentCharacter,IAgentasInitAgent}from"@eternal-dagent/core";
2. Method Availability
The createAgent() method is referenced but It can't be found on AgentClient:
// What documentation suggests:constres: IAgent=(awaitbaseAgent.createAgent())asIAgent;// What actually works:constres: IAgent=awaitAgentClient.create(baseAgent)asIAgent;
3. Type System Issues
TypeScript version conflicts, TypeScript defined in both dependencies and devDependencies. (requires TS 4.9.5)
Missing type definitions for core components
Inconsistent naming between types and implementations
Steps to Reproduce
Create new project using Agent Studio
Install dependencies
Try to create an agent following the documentation
Hi! Great work, I am spending some time on this hoping to use it as a preferred option. Encountered some issues when trying to launch Agent studio. Maybe it's just me but I thought I'd leave it here.
Description
While implementing an AI agent using the Eternal AI framework, I encountered some inconsistencies between the documentation and the actual implementation.
1. API Documentation vs testing
2. Method Availability
The
createAgent()
method is referenced but It can't be found onAgentClient
:3. Type System Issues
Steps to Reproduce
Environment
Current Workarounds
Suggested Improvements
The text was updated successfully, but these errors were encountered: