Optional
executorAgent executor.
Executor function of Agentic AI's iteration plan to internal agents running by the Agentica.conversate function.
If you want to customize the agent execution plan, you can do it by assigning you logic function of entire or partial to this property. When customizing it, it would better to reference the ChatGptAgent.execute function.
Optional
localeLocale of the A.I. chatbot.
If you configure this property, the A.I. chatbot will conversate with the given locale. You can get the locale value by
navigator.language
process.env.LANG.split(".")[0]
Optional
retryRetry count.
If LLM function calling composed arguments are invalid, the A.I. chatbot will retry to call the function with the modified arguments.
By the way, if you configure it to 0 or 1, the A.I. chatbot will not retry the LLM function calling for correcting the arguments.
Optional
systemSystem prompt messages.
System prompt messages if you want to customize the system prompt messages for each situation.
Optional
timezoneTimezone of the A.I. chatbot.
If you configure this property, the A.I. chatbot will consider the
given timezone. You can get the timezone value by
Intl.DateTimeFormat().resolvedOptions().timeZone
.
Configuration for Micro Agentic Agent.
INicroAgenticaConfig
is an interface that defines the configuration properties of the MicroAgentica. With this configuration, you can set the user's locale, timezone, and some of system prompts.Author
Samchon