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
execution_task="Find a recent paper about gpt-4 on arxiv and find its potential applications in software.",
92
+
agent_list=agent_list,
93
+
llm_config=default_llm_config
94
+
)
81
95
```
82
96
83
97
### Step 6 (Optional): clear all agents and prepare for the next task
@@ -117,8 +131,9 @@ You can provide a specific filename, otherwise, AgentBuilder will save config to
117
131
118
132
You can load the saved config and skip the building process. AgentBuilder will create agents with those information without prompting the build manager.
@@ -138,14 +153,18 @@ After satisfying the requirements, you can add an open-source LLM's huggingface
138
153
and specify it when initializing AgentBuilder.
139
154
AgentBuilder will automatically set up an endpoint server for open-source LLM. Make sure you have sufficient GPUs resources.
140
155
141
-
## Use GPTs
142
-
[GPTs](https://openai.com/blog/introducing-gpts) allow user to create an assistant with a simple instruction of the task. It has plugin support that can let ChatGPT complete some complex instructions, and can optionally update the assistant's instruction to let it adapt to new task or improve on the current task.
143
-
AutoBuild also support GPTs api by adding `use_gpts=True` to the `build()` function.
156
+
## Use OpenAI Assistant
157
+
[Assistants API](https://platform.openai.com/docs/assistants/overview) allows you to build AI assistants within your own applications.
158
+
An Assistant has instructions and can leverage models, tools, and knowledge to respond to user queries.
159
+
AutoBuild also support assistant api by adding `use_oai_assistant=True` to `build()`.
We propose AutoBuild with a new class `AgentBuilder`. AutoBuild can help user solve their complex task with an automatically built multi-agent system. AutoBuild support open-source LLMs and GPTs api, giving users more flexibility to choose their favorite models.
167
+
We propose AutoBuild with a new class `AgentBuilder`.
168
+
AutoBuild can help user solve their complex task with an automatically built multi-agent system.
169
+
AutoBuild support open-source LLMs and GPTs api, giving users more flexibility to choose their favorite models.
0 commit comments