Migrate model context and models modules out of components (#4613)

* Move model context out of components

* move models out of components

* rename docs file
This commit is contained in:
Jack Gerrits
2024-12-09 13:00:08 -05:00
committed by GitHub
parent 3817b8ddf6
commit 87011ae01b
79 changed files with 1527 additions and 1359 deletions

View File

@@ -11,14 +11,14 @@ from typing import List
from autogen_core import AgentId, AgentProxy, TopicId
from autogen_core import SingleThreadedAgentRuntime
from autogen_core.logging import EVENT_LOGGER_NAME
from autogen_core.components.models import (
from autogen_core.models import (
ChatCompletionClient,
UserMessage,
LLMMessage,
)
from autogen_core import DefaultSubscription, DefaultTopicId
from autogen_ext.code_executors.local import LocalCommandLineCodeExecutor
from autogen_core.components.models import AssistantMessage
from autogen_core.models import AssistantMessage
from autogen_magentic_one.markdown_browser import MarkdownConverter, UnsupportedFormatException
from autogen_magentic_one.agents.coder import Coder, Executor