8000 Create AIRole object and add it to AIChat · Issue #1305 · smartstore/Smartstore · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Create AIRole object and add it to AIChat #1305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
Michael-Herzog opened this issue Apr 25, 2025 · 0 comments
Open

Create AIRole object and add it to AIChat #1305

Michael-Herzog opened this issue Apr 25, 2025 · 0 comments
Assignees
Labels
Milestone

Comments

@Michael-Herzog
Copy link
Contributor

The current enum AIRole has to be renamed into AIRoleType.
The new object must look something like this:

public class AIRole()
{
public AIRoleType RoleType { get; set; }

    public string RoleDescription { get; set; }

    public List<AIOperativeRuleSet> RulesSets { get; set; } = [];
}

public class AIOperativeRuleSet() 
{
    public int Order { get; set; }

    public string Introduction { get; set; }

    public List<AIOperativeRule> Rules { get; set; } = [];
}

public class AIOperativeRule()
{
    public int Order { get; set; }

    public string RuleContent { get; set; }
}
@Michael-Herzog Michael-Herzog added this to the 6.2 milestone Apr 25, 2025
@Michael-Herzog Michael-Herzog self-assigned this Apr 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant
0