Merge branch 'main' into staging

This commit is contained in:
Jack Gerrits
2024-10-02 14:38:28 -04:00
12 changed files with 3065 additions and 3 deletions

View File

@@ -164,7 +164,7 @@ This folder holds the results for the ``two_agent_stocks`` task of the ``default
Within each folder, you will find the following files:
- *timestamp.txt*: records the date and time of the run, along with the version of the pyautogen library installed
- *timestamp.txt*: records the date and time of the run, along with the version of the autogen-agentchat library installed
- *console_log.txt*: all console output produced by Docker when running AutoGen. Read this like you would a regular console.
- *[agent]_messages.json*: for each Agent, a log of their messages dictionaries
- *./coding*: A directory containing all code written by AutoGen, and all artifacts produced by that code.

View File

@@ -126,6 +126,7 @@ class LLMConfig(SQLModel, table=False):
class ModelTypes(str, Enum):
openai = "open_ai"
cerebras = "cerebras"
google = "google"
azure = "azure"
anthropic = "anthropic"