Skip to content

Commit

Permalink
export Client at the top level
Browse files Browse the repository at this point in the history
  • Loading branch information
masci committed Oct 24, 2024
1 parent 63faa2f commit 05ff40d
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions llama_deploy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
from llama_deploy.client import AsyncLlamaDeployClient, LlamaDeployClient
from llama_deploy.control_plane import ControlPlaneServer, ControlPlaneConfig
# configure logger
import logging

from llama_deploy.client import AsyncLlamaDeployClient, Client, LlamaDeployClient
from llama_deploy.control_plane import ControlPlaneConfig, ControlPlaneServer
from llama_deploy.deploy import deploy_core, deploy_workflow
from llama_deploy.message_consumers import CallableMessageConsumer
from llama_deploy.message_queues import SimpleMessageQueue, SimpleMessageQueueConfig
from llama_deploy.messages import QueueMessage
from llama_deploy.orchestrators import SimpleOrchestrator, SimpleOrchestratorConfig
from llama_deploy.services import (
AgentService,
ComponentService,
HumanService,
ToolService,
WorkflowService,
WorkflowServiceConfig,
)
from llama_deploy.tools import (
AgentServiceTool,
MetaServiceTool,
ServiceAsTool,
ServiceComponent,
ServiceTool,
)
from llama_deploy.services import (
AgentService,
ToolService,
HumanService,
ComponentService,
WorkflowService,
WorkflowServiceConfig,
)

# configure logger
import logging

root_logger = logging.getLogger("llama_deploy")

Expand All @@ -39,6 +39,7 @@
# clients
"LlamaDeployClient",
"AsyncLlamaDeployClient",
"Client",
# services
"AgentService",
"HumanService",
Expand Down

0 comments on commit 05ff40d

Please sign in to comment.